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

Side by Side Diff: LayoutTests/accessibility/table-destroyed-crash.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 PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 function createAXObjects(accessibilityObject) { 5 function createAXObjects(accessibilityObject) {
6 var count = accessibilityObject.childrenCount; 6 var count = accessibilityObject.childrenCount;
7 for (var i = 0; i < count; ++i) 7 for (var i = 0; i < count; ++i)
8 createAXObjects(accessibilityObject.childAtIndex(i)); 8 createAXObjects(accessibilityObject.childAtIndex(i));
9 } 9 }
10 </script> 10 </script>
(...skipping 12 matching lines...) Expand all
23 document.body.focus(); 23 document.body.focus();
24 var body = accessibilityController.focusedElement; 24 var body = accessibilityController.focusedElement;
25 createAXObjects(body); 25 createAXObjects(body);
26 } 26 }
27 27
28 var element = document.getElementById("table"); 28 var element = document.getElementById("table");
29 element.parentNode.removeChild(element); 29 element.parentNode.removeChild(element);
30 30
31 </script> 31 </script>
32 32
33 <script src="../fast/js/resources/js-test-post.js"></script>
34 </body> 33 </body>
35 </html> 34 </html>
36 35
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/table-cell-for-column-and-row-crash.html ('k') | LayoutTests/accessibility/table-header.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698