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

Side by Side Diff: content/test/data/accessibility/event/live-region-add.html

Issue 2897943003: Fix DumpAccessibilityEvents tests on Mac and improve test coverage (Closed)
Patch Set: Rebaseline one more windows test Created 3 years, 6 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <div id="live" aria-live="polite">Before</div>
5 <script>
6 function go() {
7 var add = document.createElement('p');
8 add.innerText = 'After';
9 document.getElementById('live').appendChild(add);
10 }
11 </script>
12 </body>
13 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698