OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 @MAC-DENY:AXTitle* |
| 3 @MAC-DENY:AXValue* |
| 4 @MAC-ALLOW:position* |
| 5 @MAC-ALLOW:size* |
| 6 |
| 7 @WIN-DENY:title* |
| 8 @WIN-ALLOW:location* |
| 9 @WIN-ALLOW:size=(300, 150) |
| 10 @WIN-ALLOW:size=(300, 100) |
| 11 @WIN-ALLOW:size=(250, 50) |
| 12 @WIN-ALLOW:size=(150, 50) |
| 13 @WIN-ALLOW:IA2_STATE_EDITABLE |
| 14 |
| 15 @BLINK-ALLOW:location* |
| 16 @BLINK-ALLOW:scroll* |
| 17 @BLINK-ALLOW:size=(300, 150) |
| 18 @BLINK-ALLOW:size=(300, 100) |
| 19 @BLINK-ALLOW:size=(250, 50) |
| 20 @BLINK-ALLOW:size=(150, 50) |
| 21 --> |
| 22 <!DOCTYPE html> |
| 23 <html> |
| 24 <head> |
| 25 <style> |
| 26 body { |
| 27 overflow: hidden; |
| 28 } |
| 29 iframe { |
| 30 border: 0; |
| 31 margin: 0; |
| 32 padding: 0; |
| 33 overflow: hidden; |
| 34 } |
| 35 div { |
| 36 width: 300px; |
| 37 height: 150px; |
| 38 } |
| 39 </style> |
| 40 </head> |
| 41 <body style="margin: 0; padding: 0;"> |
| 42 |
| 43 <div> |
| 44 <button style="margin: 25px; border: 0; width: 250px; height: 50px"> |
| 45 Button |
| 46 </button> |
| 47 </div> |
| 48 |
| 49 <div> |
| 50 <button style="margin: 25px; border: 0; width: 250px; height: 50px"> |
| 51 Button |
| 52 </button> |
| 53 </div> |
| 54 |
| 55 <div> |
| 56 <iframe id="frame1" style="width: 300px; height: 100px;" scrolling="no" |
| 57 src="/cross-site/1.com/accessibility/html/frame/button.html"> |
| 58 </iframe> |
| 59 </div> |
| 60 |
| 61 <div> |
| 62 <iframe id="frame2" style="width: 150px; height: 50px;" scrolling="no" |
| 63 src="/cross-site/2.com/accessibility/html/frame/button_scrolled.html"> |
| 64 </iframe> |
| 65 </div> |
| 66 |
| 67 </body> |
| 68 </html> |
OLD | NEW |