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

Side by Side Diff: LayoutTests/fast/dom/shadow/new-style-inserted-into-parent-treescope.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 <script src="resources/shadow-dom.js"></script> 5 <script src="resources/shadow-dom.js"></script>
6 <style> 6 <style>
7 span { color: red; } 7 span { color: red; }
8 </style> 8 </style>
9 </head> 9 </head>
10 <body> 10 <body>
11 <div id='sandbox'></div> 11 <div id='sandbox'></div>
12 <pre id='console'></pre> 12 <pre id='console'></pre>
13 </body> 13 </body>
14 <script> 14 <script>
(...skipping 10 matching lines...) Expand all
25 document.createTextNode('Hello'))))))); 25 document.createTextNode('Hello')))))));
26 getNodeInTreeOfTrees('host1/host2/').applyAuthorStyles = true; 26 getNodeInTreeOfTrees('host1/host2/').applyAuthorStyles = true;
27 document.body.offsetLeft; 27 document.body.offsetLeft;
28 getNodeInTreeOfTrees('host1/').appendChild( 28 getNodeInTreeOfTrees('host1/').appendChild(
29 createDOM('style', {}, 29 createDOM('style', {},
30 document.createTextNode('span { color: green; }'))); 30 document.createTextNode('span { color: green; }')));
31 31
32 shouldBe("getComputedStyle(getNodeInTreeOfTrees('host1/host2/target')).color", ' "rgb(0, 128, 0)"'); 32 shouldBe("getComputedStyle(getNodeInTreeOfTrees('host1/host2/target')).color", ' "rgb(0, 128, 0)"');
33 </script> 33 </script>
34 </html> 34 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent.html ('k') | LayoutTests/fast/dom/shadow/nodetype.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698