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

Side by Side Diff: LayoutTests/accessibility/inline-text-textarea.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 src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../fast/js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 7
8 <textarea id="textarea" cols=30 rows=20>This textarea contains several lines of text. It demonstrates 8 <textarea id="textarea" cols=30 rows=20>This textarea contains several lines of text. It demonstrates
9 how updating a single InlineTextBox is a lot more efficient than updating the wh ole TextArea.</textarea> 9 how updating a single InlineTextBox is a lot more efficient than updating the wh ole TextArea.</textarea>
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 // inline text boxes in the last paragraph are reused. 42 // inline text boxes in the last paragraph are reused.
43 var inlineTextBoxesAfter = findAllDescendantsWithRole(axTextarea, 'AXRol e: AXInlineTextBox'); 43 var inlineTextBoxesAfter = findAllDescendantsWithRole(axTextarea, 'AXRol e: AXInlineTextBox');
44 var firstInlineTextBoxAfter = inlineTextBoxesAfter[0]; 44 var firstInlineTextBoxAfter = inlineTextBoxesAfter[0];
45 var lastInlineTextBoxAfter = inlineTextBoxesAfter[inlineTextBoxesAfter.l ength - 1]; 45 var lastInlineTextBoxAfter = inlineTextBoxesAfter[inlineTextBoxesAfter.l ength - 1];
46 46
47 shouldBe("firstInlineTextBoxBefore.isEqual(firstInlineTextBoxAfter)", "f alse"); 47 shouldBe("firstInlineTextBoxBefore.isEqual(firstInlineTextBoxAfter)", "f alse");
48 shouldBe("lastInlineTextBoxBefore.isEqual(lastInlineTextBoxAfter)", "tru e"); 48 shouldBe("lastInlineTextBoxBefore.isEqual(lastInlineTextBoxAfter)", "tru e");
49 } 49 }
50 </script> 50 </script>
51 51
52 <script src="../fast/js/resources/js-test-post.js"></script>
53 </body> 52 </body>
54 </html> 53 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/inline-text-changes.html ('k') | LayoutTests/accessibility/inline-text-word-boundaries.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698