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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user