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

Unified Diff: tests/html/shadow_dom_test.dart

Issue 11664009: Adjustments to next Chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 side-by-side diff with in-line comments
Download patch
Index: tests/html/shadow_dom_test.dart
diff --git a/tests/html/shadow_dom_test.dart b/tests/html/shadow_dom_test.dart
index 8e9a93209e4df399723812d29a4ae4ceb609b86a..42c25516f3a8ef2d3d7043b9ad0a626278db6e67 100644
--- a/tests/html/shadow_dom_test.dart
+++ b/tests/html/shadow_dom_test.dart
@@ -21,7 +21,7 @@ main() {
div1 = new DivElement();
div2 = new DivElement();
div1.classes.add('foo');
- shadowRoot = new ShadowRoot(div2);
+ shadowRoot = div2.webkitCreateShadowRoot();
shadowRoot.nodes.add(paragraph1);
// No constructor for ContentElement exists yet.
// See http://code.google.com/p/dart/issues/detail?id=3870.

Powered by Google App Engine
This is Rietveld 408576698