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

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

Issue 683063002: Add DumpAccessibilityTree tests (9 of 20) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
OLDNEW
1 <!doctype html>
2 <!-- 1 <!--
3 @WIN-ALLOW:level:* 2 @WIN-ALLOW:level:*
4 @WIN-ALLOW:xml-roles:heading
5 --> 3 -->
4 <!DOCTYPE html>
6 <html> 5 <html>
7 <body> 6 <body>
8 <h1>Heading 1</h1> 7 <h1>Heading 1</h1>
9 <h2>Heading 2</h2> 8 <h2>Heading 2</h2>
10 <h3>Heading 3</h3> 9 <h3>Heading 3</h3>
11 <h4>Heading 4</h4> 10 <h4>Heading 4</h4>
12 <h5>Heading 5</h5> 11 <h5>Heading 5</h5>
13 <h6>Heading 6</h6> 12 <h6>Heading 6</h6>
14
15 <div role="heading" aria-level="1">ARIA Heading 1</div>
16 <div role="heading" aria-level="2">ARIA Heading 2</div>
17 <div role="heading" aria-level="3">ARIA Heading 3</div>
18 <div role="heading" aria-level="4">ARIA Heading 4</div>
19 <div role="heading" aria-level="5">ARIA Heading 5</div>
20 <div role="heading" aria-level="6">ARIA Heading 6</div>
21 </body> 13 </body>
22 </html> 14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698