--- a/ARIA-UAIG/1.0/tests/test-files/test99.html Wed Sep 25 16:51:55 2013 -0500
+++ b/ARIA-UAIG/1.0/tests/test-files/test99.html Thu Sep 26 08:19:48 2013 -0500
@@ -3,12 +3,16 @@
<head>
<title>test 99</title>
<style>
- div[aria-haspopup="true"] {background-color:red;}
+ div[aria-haspopup="true"]
+ {
+ background-color:red;
+ }
</style>
</head>
<body>
<p><input type="button" value="popup false" onclick="document.getElementById('test').setAttribute('aria-haspopup', 'false')"/></p>
- <div role="button" aria-haspopup="true"></div>
- <div role="button" id="test" aria-haspopup="true"</div>
+
+ <div role="button" aria-haspopup="true"> button 1</div>
+ <div role="button" id="test" aria-haspopup="true"> button 2</div>
</body>
</html>