Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / dom / shadow / no-style-sharing-with-uncommon-attribute-and-pseudo-content.html
index f347ded..3613347 100644 (file)
@@ -7,9 +7,11 @@ if (window.testRunner)
 
 function runTest() {
     var shadow = host.createShadowRoot();
+    shadow.applyAuthorStyles = false;
     shadow.innerHTML = "<div id='hostInShadow'><div class='parent'><p ishidden='false'>NotHidden</p><p ishidden='true' id='target'>Hidden</p></div></div>";
 
     var innerShadow = shadow.getElementById('hostInShadow').createShadowRoot();
+    innerShadow.applyAuthorStyles = false;
     innerShadow.innerHTML = "<style>content::content .parent [ishidden=true] { display: none; }</style><content>";
 
     window.setTimeout(function() {