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

Side by Side Diff: content/test/data/accessibility/list.html

Issue 665583002: Add AX TC for LI element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Add AX TC for li element Created 6 years, 2 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 <!--
2 @MAC-ALLOW:AXSubrole*
3 -->
4 <html>
5 <style type="text/css">
6 .inlineList li {
7 display: inline;
8 }
9 </style>
10 <body>
11 <ul>
12 <li>tic</li>
13 <li>tac</li>
14 <li>toe</li>
15 </ul>
16 <ul class="inlineList">
17 <li>tic</li>
18 <li>tac</li>
19 <li>toe</li>
20 </ul>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698