summaryrefslogtreecommitdiffstats
path: root/content/test/data/accessibility
diff options
context:
space:
mode:
Diffstat (limited to 'content/test/data/accessibility')
-rw-r--r--content/test/data/accessibility/aria-math-expected-android.txt2
-rw-r--r--content/test/data/accessibility/aria-math-expected-mac.txt3
-rw-r--r--content/test/data/accessibility/aria-math-expected-win.txt3
-rw-r--r--content/test/data/accessibility/aria-math.html11
-rw-r--r--content/test/data/accessibility/math-expected-android.txt1
-rw-r--r--content/test/data/accessibility/math-expected-mac.txt1
-rw-r--r--content/test/data/accessibility/math-expected-win.txt1
-rw-r--r--content/test/data/accessibility/math.html16
8 files changed, 38 insertions, 0 deletions
diff --git a/content/test/data/accessibility/aria-math-expected-android.txt b/content/test/data/accessibility/aria-math-expected-android.txt
new file mode 100644
index 0000000..5e75c36
--- /dev/null
+++ b/content/test/data/accessibility/aria-math-expected-android.txt
@@ -0,0 +1,2 @@
+android.webkit.WebView focusable focused scrollable
+ android.view.View clickable name='ARIA role math.'
diff --git a/content/test/data/accessibility/aria-math-expected-mac.txt b/content/test/data/accessibility/aria-math-expected-mac.txt
new file mode 100644
index 0000000..94949a6
--- /dev/null
+++ b/content/test/data/accessibility/aria-math-expected-mac.txt
@@ -0,0 +1,3 @@
+AXWebArea AXRoleDescription='HTML content'
+ AXGroup AXSubrole=AXDocumentMath AXRoleDescription='math'
+ AXStaticText AXRoleDescription='text' AXValue='ARIA role math.'
diff --git a/content/test/data/accessibility/aria-math-expected-win.txt b/content/test/data/accessibility/aria-math-expected-win.txt
new file mode 100644
index 0000000..3d0e2c7
--- /dev/null
+++ b/content/test/data/accessibility/aria-math-expected-win.txt
@@ -0,0 +1,3 @@
+ROLE_SYSTEM_DOCUMENT READONLY FOCUSABLE
+ ROLE_SYSTEM_EQUATION xml-roles:math
+ ROLE_SYSTEM_STATICTEXT name='ARIA role math.'
diff --git a/content/test/data/accessibility/aria-math.html b/content/test/data/accessibility/aria-math.html
new file mode 100644
index 0000000..38dc899
--- /dev/null
+++ b/content/test/data/accessibility/aria-math.html
@@ -0,0 +1,11 @@
+<!--
+@MAC-ALLOW:AXRole*
+@MAC-ALLOW:AXSubrole*
+@WIN-ALLOW:xml-roles*
+-->
+<!DOCTYPE html>
+<html>
+<body>
+ <div role="math">ARIA role math.</div>
+</body>
+</html>
diff --git a/content/test/data/accessibility/math-expected-android.txt b/content/test/data/accessibility/math-expected-android.txt
new file mode 100644
index 0000000..6ba9f81
--- /dev/null
+++ b/content/test/data/accessibility/math-expected-android.txt
@@ -0,0 +1 @@
+#<skip - blink side patch is required> \ No newline at end of file
diff --git a/content/test/data/accessibility/math-expected-mac.txt b/content/test/data/accessibility/math-expected-mac.txt
new file mode 100644
index 0000000..6ba9f81
--- /dev/null
+++ b/content/test/data/accessibility/math-expected-mac.txt
@@ -0,0 +1 @@
+#<skip - blink side patch is required> \ No newline at end of file
diff --git a/content/test/data/accessibility/math-expected-win.txt b/content/test/data/accessibility/math-expected-win.txt
new file mode 100644
index 0000000..6ba9f81
--- /dev/null
+++ b/content/test/data/accessibility/math-expected-win.txt
@@ -0,0 +1 @@
+#<skip - blink side patch is required> \ No newline at end of file
diff --git a/content/test/data/accessibility/math.html b/content/test/data/accessibility/math.html
new file mode 100644
index 0000000..de3c57a
--- /dev/null
+++ b/content/test/data/accessibility/math.html
@@ -0,0 +1,16 @@
+<!--
+@MAC-ALLOW:AXRole*
+@MAC-ALLOW:AXSubrole*
+-->
+<!DOCTYPE html>
+<html>
+<body>
+ <math xmlns="http://www.w3.org/1998/Math/MathML">
+ <mrow>
+ <msup><mi>a</mi><mn>2</mn></msup>
+ <mo>+</mo>
+ <msup><mi>b</mi><mn>2</mn></msup>
+ </mrow>
+ </math>
+</body>
+</html>