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: content/test/data/accessibility/html/transition.html

Issue 815463006: Separating ARIA, HTML & event AX test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 months 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 This tests that location changes are sent when an element animates 3 This tests that location changes are sent when an element animates
4 using CSS transitions. The test animates the size of a button when 4 using CSS transitions. The test animates the size of a button when
5 focused, then adds the magic text "Done" to the document when 5 focused, then adds the magic text "Done" to the document when
6 the transition finishes. The WAIT-FOR directive below instructs 6 the transition finishes. The WAIT-FOR directive below instructs
7 the test framework to keep waiting for accessibility events and 7 the test framework to keep waiting for accessibility events and
8 not diff the dump against the expectations until the text "Done" 8 not diff the dump against the expectations until the text "Done"
9 appears in the dump. 9 appears in the dump.
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 if (!done) { 49 if (!done) {
50 document.body.appendChild(document.createTextNode('Done')); 50 document.body.appendChild(document.createTextNode('Done'));
51 done = true; 51 done = true;
52 } 52 }
53 }, false); 53 }, false);
54 growButton.focus(); 54 growButton.focus();
55 </script> 55 </script>
56 56
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698