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

Side by Side Diff: LayoutTests/fast/dom/shadow/remove-and-insert-style.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 </head> 5 </head>
6 <body> 6 <body>
7 <!-- crbug.com/246300 --> 7 <!-- crbug.com/246300 -->
8 <!-- #host shadow root --> 8 <!-- #host shadow root -->
9 <template id="t"> 9 <template id="t">
10 <style> 10 <style>
11 #host { 11 #host {
12 height: 50px; 12 height: 50px;
13 width: 50px; 13 width: 50px;
14 background: lightgray; 14 background: lightgray;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 jsTestIsAsync = true; 54 jsTestIsAsync = true;
55 setTimeout(function() { 55 setTimeout(function() {
56 container.remove(); 56 container.remove();
57 sr.appendChild(container); 57 sr.appendChild(container);
58 58
59 shouldHaveBackgroundColor(sr2.getElementById('green'), 'rgb(0, 128, 0)'); 59 shouldHaveBackgroundColor(sr2.getElementById('green'), 'rgb(0, 128, 0)');
60 finishJSTest(); 60 finishJSTest();
61 }, 0); 61 }, 0);
62 </script> 62 </script>
63 </html> 63 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/reinsert-insertion-point.html ('k') | LayoutTests/fast/dom/shadow/resize-in-shadow-dom.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698