--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/host-language/implicit-semantics-checkbox-disparity.html Tue Jun 25 19:52:12 2013 -0400
@@ -0,0 +1,13 @@
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Native checkbox with aria-checked that conflicts with native checked</title>
+ </head>
+ <body>
+ <form>
+ <input type="checkbox" role="checkbox" checked="checked" aria-checked="false" id="test" value="Placeholder content" />
+ </form>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/host-language/implicit-semantics-checkbox-menuitemcheckbox.html Tue Jun 25 19:52:12 2013 -0400
@@ -0,0 +1,13 @@
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Native checkbox overridden to menuitemcheckbox</title>
+ </head>
+ <body>
+ <form>
+ <input type="checkbox" role="menuitemcheckbox" id="test" value="Placeholder content" />
+ </form>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/host-language/implicit-semantics-checkbox-norole.html Tue Jun 25 19:52:12 2013 -0400
@@ -0,0 +1,13 @@
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Native checkbox with aria-checked but no role</title>
+ </head>
+ <body>
+ <form>
+ <input type="checkbox" checked="checked" aria-checked="mixed" id="test" value="Placeholder content" />
+ </form>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/host-language/implicit-semantics-checkbox-radio.html Tue Jun 25 19:52:12 2013 -0400
@@ -0,0 +1,13 @@
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Native checkbox overridden to radio</title>
+ </head>
+ <body>
+ <form>
+ <input type="checkbox" role="radio" id="test" value="Placeholder content" />
+ </form>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/host-language/implicit-semantics-checkbox-role.html Tue Jun 25 19:52:12 2013 -0400
@@ -0,0 +1,13 @@
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Native checkbox with aria-checked with role</title>
+ </head>
+ <body>
+ <form>
+ <input type="checkbox" checked="checked" role="checkbox" aria-checked="mixed" id="test" value="Placeholder content" />
+ </form>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/host-language/role-2tokens-first.html Tue Jun 25 19:52:12 2013 -0400
@@ -0,0 +1,11 @@
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Role attribute with two tokens; ARIA role is first</title>
+ </head>
+ <body>
+ <div role="dialog foo" id="test">Placeholder content</div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/host-language/role-2tokens-second.html Tue Jun 25 19:52:12 2013 -0400
@@ -0,0 +1,11 @@
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Role attribute with two tokens; ARIA role is second</title>
+ </head>
+ <body>
+ <div role="foo dialog" id="test">Placeholder content</div>
+ </body>
+</html>
\ No newline at end of file