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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadow-root-activeElement.html

Issue 48903019: Delete js-test-post.js. (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="../../js/resources/js-test-pre.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="console"></div> 8 <div id="console"></div>
9 <div id="sandbox"> 9 <div id="sandbox">
10 </div> 10 </div>
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 shouldBe("childInShadowRoot2.focus(); shadowRoot1.activeElement", "shadowHost2") ; 58 shouldBe("childInShadowRoot2.focus(); shadowRoot1.activeElement", "shadowHost2") ;
59 shouldBe("childInShadowRoot2.focus(); shadowRoot2.activeElement", "childInShadow Root2"); 59 shouldBe("childInShadowRoot2.focus(); shadowRoot2.activeElement", "childInShadow Root2");
60 60
61 evalAndLog("childInShadowRoot2.blur();"); 61 evalAndLog("childInShadowRoot2.blur();");
62 shouldBe("document.activeElement", "document.body"); 62 shouldBe("document.activeElement", "document.body");
63 shouldBe("shadowRoot1.activeElement", "null"); 63 shouldBe("shadowRoot1.activeElement", "null");
64 shouldBe("shadowRoot2.activeElement", "null"); 64 shouldBe("shadowRoot2.activeElement", "null");
65 65
66 var successfullyParsed = true; 66 var successfullyParsed = true;
67 </script> 67 </script>
68 <script src="../../js/resources/js-test-post.js"></script>
69 </body> 68 </body>
70 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698