Fix a dumb typo in SVGElementWrappingImplementation.

TBR

Review URL: http://codereview.chromium.org//9190060

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@3255 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
nweiz@google.com
2012-01-12 21:17:17 +00:00
parent 28c673ef01
commit 1ec79ff3ca
3 changed files with 3 additions and 6 deletions
+1 -1
View File
@@ -24051,7 +24051,7 @@ class _SVGClassSet extends _CssClassSet {
String _className() => _element.className.baseVal;
viod _write(Set s) {
void _write(Set s) {
_element.className.baseVal = _formatSet(s);
}
}
@@ -7,7 +7,7 @@ class _SVGClassSet extends _CssClassSet {
String _className() => _element.className.baseVal;
viod _write(Set s) {
void _write(Set s) {
_element.className.baseVal = _formatSet(s);
}
}
+1 -4
View File
@@ -731,10 +731,7 @@ class DartcCompilationTestSuite extends StandardTestSuite {
var tempDir = new Directory('');
tempDir.createTempSync();
return
[ // TODO(zundel): re-enable the --fatal-* flags as soon as warnings in
// htmllib introduced by r3223 are resolved.
// '--fatal-warnings', '--fatal-type-errors',
'-check-only', '-out', tempDir.path];
['-check-only', '-fatal-type-errors', '-Werror', '-out', tempDir.path];
}
void processDirectory() {