Chromium Code Reviews| 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')); |