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

Side by Side Diff: LayoutTests/fast/dom/mutation-details-focus.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 <body> 1 <body>
2 <script src="../js/resources/js-test-pre.js"></script> 2 <script src="../../resources/js-test.js"></script>
3 <script> 3 <script>
4 (function() { 4 (function() {
5 (function() { 5 (function() {
6 var theElement = document.createElement("details"); 6 var theElement = document.createElement("details");
7 document.body.appendChild(theElement); 7 document.body.appendChild(theElement);
8 theElement.addEventListener("DOMNodeRemovedFromDocument", function () { eventSender.keyDown("\t"); }, false); 8 theElement.addEventListener("DOMNodeRemovedFromDocument", function () { eventSender.keyDown("\t"); }, false);
9 theElement.parentNode.removeChild(theElement); 9 theElement.parentNode.removeChild(theElement);
10 })(); 10 })();
11 gc(); 11 gc();
12 debug("PASS unless crash"); 12 debug("PASS unless crash");
13 })(); 13 })();
14 </script> 14 </script>
15 </body> 15 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/minor-dom-gc.html ('k') | LayoutTests/fast/dom/navigator-maxTouchPoints.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698