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

Side by Side Diff: LayoutTests/fast/dom/shadow/distribution-crash.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><body> 2 <html><body>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 4
5 <p>When modifying InsertionPoint's child, distribution should not cause crash.</ p> 5 <p>When modifying InsertionPoint's child, distribution should not cause crash.</ p>
6 <p>PASS unless crash.</p> 6 <p>PASS unless crash.</p>
7 7
8 <div id="host"></div> 8 <div id="host"></div>
9 <pre id="console"></pre> 9 <pre id="console"></pre>
10 10
11 <script> 11 <script>
12 jsTestIsAsync = true; 12 jsTestIsAsync = true;
13 13
(...skipping 20 matching lines...) Expand all
34 shadowRoot2.appendChild(details); 34 shadowRoot2.appendChild(details);
35 35
36 var shadow = details.firstChild; 36 var shadow = details.firstChild;
37 setTimeout(function() { 37 setTimeout(function() {
38 shadow.firstChild.remove(); 38 shadow.firstChild.remove();
39 finishJSTest(); 39 finishJSTest();
40 }, 0); 40 }, 0);
41 </script> 41 </script>
42 42
43 </body></html> 43 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698