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

Unified Diff: LayoutTests/accessibility/element-role-mapping-normal.html

Issue 1012383002: Removes direct checking node on AXLayoutObject::determineAccessibilityRole. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update nits Created 5 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/accessibility/element-role-mapping-normal.html
diff --git a/LayoutTests/accessibility/element-role-mapping-normal.html b/LayoutTests/accessibility/element-role-mapping-normal.html
new file mode 100644
index 0000000000000000000000000000000000000000..d8b649be55bca58a42f12465b6345fbf77cc2972
--- /dev/null
+++ b/LayoutTests/accessibility/element-role-mapping-normal.html
@@ -0,0 +1,95 @@
+<html>
+<script src="../resources/js-test.js"></script>
+<script src="../resources/accessibility-helper.js"></script>
+<header>This is a Header for this page</header>
+<h1>Heading</h1>
+<div>Division</div>
+<p>Paragraph</p>
+<ruby>
+韓國<rp>(</rp><rt>한국</rt><rp>)</rp>
+</ruby>
+<dl>
+ <dt>Coffee</dt>
+ <dd>- black hot drink</dd>
+ <dt>Milk</dt>
+ <dd>- white cold drink</dd>
+</dl>
+<math xmlns="http://www.w3.org/1998/Math/MathML">
+ <mrow>
+ <mi> x </mi>
+ <mo> + </mo>
+ <mrow>
+ <mi> a </mi>
+ <mo> / </mo>
+ <mi> b </mi>
+ </mrow>
+ </mrow>
+</math>
+<main>
+ <article>
+ <header>
+ <h1>Most important heading here</h1>
+ </header>
+ <h1>Google Chrome</h1>
+ <p>Google Chrome is a free, open-source web browser developed by Google,
+ released in 2008.</p>
+ <footer>
+ <p>Footer in article</p>
+ </footer>
+ </article>
+</main>
+<nav>
+ <a href="/html/">HTML</a> |
+ <a href="/css/">CSS</a> |
+ <a href="/js/">JavaScript</a> |
+</nav>
+<aside>
+ <p>Text that appears under aside</p>
+</aside>
+<pre>
+Text in a pre
+element
+</pre>
+<section>
+ <header>
+ <h1>Most important heading here</h1>
+ </header>
+ <p>Section</p>
+ <footer>
+ <p>Footer in section</p>
+ </footer>
+</section>
+<address>
+Written by Julie<br>
+Visit us at:www.chromium.org<br>
+</address>
+<p>January <dialog open>This is an open dialog window</dialog></p>
+<iframe src="about:blank"></iframe>
+<iframe src="about:blank" role="presentation"></iframe>
+<table>
+ <caption>Caption</caption>
+ <tr>
+ <td>Cell1</td>
+ <td>Cell2</td>
+ </tr>
+</table>
+<figure>
+ <img width="12" height="10" src="data:image/gif;base64,R0lGODdhDAAKAJEAAP///wAA/wAAAAAAACwAAAAADAAKAAACEoyPAMihnRY0bzo5a8ZQd94oBQA7" alt="blue">
+ <figcaption>Fig1. - Blue Box</figcaption>
+</figure>
+<embed src="xxx.mp3">
+<footer>
+ <p>This is a footer.</p>
+</footer>
+<p>End of test</p>
+<p id="description"></p>
+<div id="console"></div>
+<script>
+description("This test make sure that unfocuasable elements are mapped implicitly to AX roles.");
+
+if (window.testRunner)
+ testRunner.dumpAsText();
+if (window.accessibilityController)
+ buildAccessibilityTree(accessibilityController.focusedElement, 0, 1);
+</script>
+</html>

Powered by Google App Engine
This is Rietveld 408576698