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

Side by Side Diff: LayoutTests/accessibility/heading-level.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 5
6 <!-- implicit level of tag --> 6 <!-- implicit level of tag -->
7 <h1 class="ex" data-expected="1">X</h1> 7 <h1 class="ex" data-expected="1">X</h1>
8 <h2 class="ex" data-expected="2">X</h2> 8 <h2 class="ex" data-expected="2">X</h2>
9 <h3 class="ex" data-expected="3">X</h3> 9 <h3 class="ex" data-expected="3">X</h3>
10 <h4 class="ex" data-expected="4">X</h4> 10 <h4 class="ex" data-expected="4">X</h4>
11 <h5 class="ex" data-expected="5">X</h5> 11 <h5 class="ex" data-expected="5">X</h5>
12 <h6 class="ex" data-expected="6">X</h6> 12 <h6 class="ex" data-expected="6">X</h6>
13 13
14 <!-- explicit aria-level overrides on h1-h6 (withOUT explicit heading role decla ration) does not work in current WebKit. --> 14 <!-- explicit aria-level overrides on h1-h6 (withOUT explicit heading role decla ration) does not work in current WebKit. -->
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 result.innerText += "PASS: level is " + axElement.intValue + ".\n"; 56 result.innerText += "PASS: level is " + axElement.intValue + ".\n";
57 } else { 57 } else {
58 result.innerText += "FAIL: level is " + axElement.intValue + " for " + el.outerHTML + ", expected " + parseInt(el.getAttribute('data-expected')) + " .\n"; 58 result.innerText += "FAIL: level is " + axElement.intValue + " for " + el.outerHTML + ", expected " + parseInt(el.getAttribute('data-expected')) + " .\n";
59 } 59 }
60 el.style.display = 'none'; // Hide each example after verification. 60 el.style.display = 'none'; // Hide each example after verification.
61 } 61 }
62 } 62 }
63 </script> 63 </script>
64 </body> 64 </body>
65 </html> 65 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/hang-in-isignored.html ('k') | LayoutTests/accessibility/image-map-title-causes-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698