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

Side by Side Diff: LayoutTests/accessibility/accessibility-node-reparent.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 <body> 3 <body>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../fast/js/resources/js-test-pre.js"></script>
5 5
6 <div id="container" tabindex="-1"></div> 6 <div id="container" tabindex="-1"></div>
7 7
8 <canvas id="canvas" tabindex="-1"></canvas> 8 <canvas id="canvas" tabindex="-1"></canvas>
9 9
10 <div id="console"></div> 10 <div id="console"></div>
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 window.detachedCanvasButtonRole = axElement.role; 53 window.detachedCanvasButtonRole = axElement.role;
54 shouldBe("detachedCanvasButtonRole", "expectedDetachedRole"); 54 shouldBe("detachedCanvasButtonRole", "expectedDetachedRole");
55 55
56 // Ensure that the new accessibility object for the now-reparented node has the correct role. 56 // Ensure that the new accessibility object for the now-reparented node has the correct role.
57 window.reparentedButtonRole = axReparentedElement.role; 57 window.reparentedButtonRole = axReparentedElement.role;
58 shouldBe("reparentedButtonRole", "expectedButtonRole"); 58 shouldBe("reparentedButtonRole", "expectedButtonRole");
59 } 59 }
60 60
61 </script> 61 </script>
62 62
63 <script src="../fast/js/resources/js-test-post.js"></script>
64 </body> 63 </body>
65 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698