put content in divs to see background
authorRichard Schwerdtfeger <schwer@us.ibm.com>
Thu, 26 Sep 2013 08:19:48 -0500
changeset 386 444f2782c768
parent 385 537490fe04d3
child 387 262fa85b450c
put content in divs to see background
ARIA-UAIG/1.0/tests/test-files/test99.html
--- 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>