OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html> | |
3 <!-- | |
4 Ref test for checking that regions with associated region styling rules | |
5 are identified and flagged correctly. | |
6 --> | |
7 <head> | |
8 <style> | |
9 @font-face { | |
10 font-family: webkit-ahem; | |
11 font-style: normal; | |
12 src: url(../../../resources/Ahem.ttf); | |
13 } | |
14 | |
15 p { font-family: webkit-ahem; background-color: green; } | |
16 | |
17 #region1 { position: absolute; top: 10px; width: 300px; height: 50px
; } | |
18 #region2 { position: absolute; top: 70px; width: 300px; height: 50px
; } | |
19 #region4 { position: absolute; top: 190px; width: 300px; height: 50p
x; } | |
20 </style> | |
21 </head> | |
22 <body> | |
23 <div id="region1"> | |
24 <p id="p1">R: 00 G: 80 B: 00</p> | |
25 </div> | |
26 <div id="region2"> | |
27 <p id="p2">R: 00 G: 80 B: 00</p> | |
28 </div> | |
29 <div id="region4"> | |
30 <p id="p3" class="p3">R: 00 G: 80 B: 00</p> | |
31 </div> | |
32 </body> | |
33 </html> | |
34 | |
OLD | NEW |