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

Side by Side Diff: LayoutTests/fast/dom/custom/registration-context-delete-during-callback-recursion.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 <script src="../../js/resources/js-test-pre.js"></script> 2 <script src="../../../resources/js-test.js"></script>
3 <script src="testutils.js"></script> 3 <script src="testutils.js"></script>
4 <body> 4 <body>
5 <div id="s"> 5 <div id="s">
6 </div> 6 </div>
7 <script> 7 <script>
8 if (fork()) { 8 if (fork()) {
9 // The controlling parent frame 9 // The controlling parent frame
10 description('Tests destroying a context during attributeChanged callback.'); 10 description('Tests destroying a context during attributeChanged callback.');
11 jsTestIsAsync = true; 11 jsTestIsAsync = true;
12 successfullyParsed = true; 12 successfullyParsed = true;
(...skipping 16 matching lines...) Expand all
29 var A = document.register('x-a', {prototype: proto}); 29 var A = document.register('x-a', {prototype: proto});
30 s.innerHTML = 30 s.innerHTML =
31 '<x-a id="t"></x-a>' + 31 '<x-a id="t"></x-a>' +
32 '<x-a id="u"></x-a>' + 32 '<x-a id="u"></x-a>' +
33 '<x-a id="v"></x-a>' + 33 '<x-a id="v"></x-a>' +
34 '<x-a id="w"></x-a>'; 34 '<x-a id="w"></x-a>';
35 35
36 done(); 36 done();
37 } 37 }
38 </script> 38 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698