Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: tests/html/cssstyledeclaration_test.dart

Issue 12295039: Fixing CssStyleDeclaration to not throw exceptions for unsupported values. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library CssStyleDeclarationTest; 5 library CssStyleDeclarationTest;
6 import '../../pkg/unittest/lib/unittest.dart'; 6 import '../../pkg/unittest/lib/unittest.dart';
7 import '../../pkg/unittest/lib/html_config.dart'; 7 import '../../pkg/unittest/lib/html_config.dart';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:async'; 9 import 'dart:async';
10 10
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 var element = new DivElement(); 84 var element = new DivElement();
85 document.body.children.add(element); 85 document.body.children.add(element);
86 86
87 // Need to wait one tick after the element has been added to the page. 87 // Need to wait one tick after the element has been added to the page.
88 new Timer(const Duration(milliseconds: 10), expectAsync0(() { 88 new Timer(const Duration(milliseconds: 10), expectAsync0(() {
89 element.style.textDecoration = 'underline'; 89 element.style.textDecoration = 'underline';
90 var style = element.getComputedStyle(); 90 var style = element.getComputedStyle();
91 expect(style.textDecoration, equals('underline')); 91 expect(style.textDecoration, equals('underline'));
92 })); 92 }));
93 }); 93 });
94
95 test('Invalid values', () {
96 var element = new DivElement();
97 // Should not throw an error.
98 element.style.background = 'some_bad_value';
99 });
94 } 100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698