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

Unified Diff: tests/html/shadow_dom_layout_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_layout_test.dart
diff --git a/tests/html/shadow_dom_layout_test.dart b/tests/html/shadow_dom_layout_test.dart
index ec809ca134aa31f8a7c8871365375201bedc1d5a..389ba17e50c9ad42c56cfc6efd98c355f639f953 100644
--- a/tests/html/shadow_dom_layout_test.dart
+++ b/tests/html/shadow_dom_layout_test.dart
@@ -20,7 +20,7 @@ main() {
var greenbox = _colorBox('green', 60, 10);
// assemble DOM
- var sRoot = new ShadowRoot(div);
+ var sRoot = div.webkitCreateShadowRoot();
antonm 2012/12/21 15:38:12 no ShadowRoot constructor anymore.
Siggi Cherem (dart-lang) 2012/12/21 17:03:15 :( - is this a change from webkit's IDLs?
Emily Fortuna 2012/12/21 19:05:15 Is this something we can/should fix on our end? If
Jennifer Messerly 2012/12/21 21:05:22 yes.
sRoot.nodes.add(new Element.html('<content select=".foo"></content>'));
sRoot.nodes.add(redbox);
sRoot.nodes.add(new Element.tag('content'));

Powered by Google App Engine
This is Rietveld 408576698