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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadow-tree-styles-select-host.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 </head> 6 </head>
7 <body> 7 <body>
8 <div id='sandbox'></div> 8 <div id='sandbox'></div>
9 <pre id='console'></pre> 9 <pre id='console'></pre>
10 </body> 10 </body>
11 <script> 11 <script>
12 description('Test for issue 247275: shadow tree styles selects shadow host.'); 12 description('Test for issue 247275: shadow tree styles selects shadow host.');
13 13
14 var sandbox = document.getElementById('sandbox'); 14 var sandbox = document.getElementById('sandbox');
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 createDOM('content', {})), 212 createDOM('content', {})),
213 createDOM('div', {}))); 213 createDOM('div', {})));
214 214
215 // for checking style sharing 215 // for checking style sharing
216 shouldHaveBorderColor('hostA', 'rgb(255, 0, 0)'); 216 shouldHaveBorderColor('hostA', 'rgb(255, 0, 0)');
217 shouldHaveBorderColor('hostB', 'rgb(0, 128, 0)'); 217 shouldHaveBorderColor('hostB', 'rgb(0, 128, 0)');
218 218
219 cleanUp(); 219 cleanUp();
220 </script> 220 </script>
221 </html> 221 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698