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

Side by Side Diff: LayoutTests/accessibility/other-aria-attribute-change-sends-notification.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
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 <div id="container"> 8 <div id="container">
9 <button id="aria-busy" aria-busy="false">Busy</button> 9 <button id="aria-busy" aria-busy="false">Busy</button>
10 <button id="aria-disabled" aria-disabled="false">Disabled</button> 10 <button id="aria-disabled" aria-disabled="false">Disabled</button>
11 <button id="aria-readonly" aria-readonly="false">Readonly</button> 11 <button id="aria-readonly" aria-readonly="false">Readonly</button>
12 <button id="aria-required" aria-required="false">Required</button> 12 <button id="aria-required" aria-required="false">Required</button>
13 </div> 13 </div>
14 14
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 debug('Got ' + notification + ' notification on aria-required'); 62 debug('Got ' + notification + ' notification on aria-required');
63 gotSuccessfulNotification(); 63 gotSuccessfulNotification();
64 }); 64 });
65 document.getElementById('aria-required').setAttribute('aria-required', 'true '); 65 document.getElementById('aria-required').setAttribute('aria-required', 'true ');
66 66
67 debug(''); 67 debug('');
68 } 68 }
69 69
70 </script> 70 </script>
71 71
72 <script src="../../../fast/js/resources/js-test-post.js"></script> 72 <script src="../fast/js/resources/js-test-post.js"></script>
73 </body> 73 </body>
74 </html> 74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698