OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html> | |
3 <!-- | |
4 Test for https://bugs.webkit.org/show_bug.cgi?id=85633 ([CSSRegions]Add regi
on styling support for color property). | |
5 You should not see any red text below. | |
6 --> | |
7 <head> | |
8 <style> | |
9 body { font-family: monospace; } | |
10 #p1 { color: #008000; position: absolute; top: 10px; } | |
11 #span2 { color: #008000; position: absolute; top: 50px; } | |
12 #article3 { color: #0000ff; position: absolute; top: 90px; } | |
13 #div3 { color: #008000; } | |
14 #span41 { color: #008000; position: absolute; top: 150px; } | |
15 #span42 { color: #00ff00; position: absolute; top: 190px; } | |
16 em { color: #008000; } | |
17 #div51 { color: #00ff00; position: absolute; top: 230px; width: 350p
x; height: 50px; } | |
18 #div52 { color: #00ff00; position: absolute; top: 290px; width: 350p
x; height: 50px; } | |
19 </style> | |
20 </head> | |
21 <body> | |
22 <p id="p1">P color styled in region: #008000.</p> | |
23 <span id="span2">Span color styled in region: #008000.</span> | |
24 <div id="article3"> | |
25 Text color styled in region: #0000ff. | |
26 <div id="div3">Div color styled in region: #008000.</div> | |
27 Text color styled in region: #0000ff. | |
28 </div> | |
29 <span id="span41">Span text color styled in region: #008000.</span> | |
30 <span id="span42">Span text color styled in region: #00ff00.</span> | |
31 <div id="div51"> | |
32 Text color styled in region: #00ff00. | |
33 <em style="display: block">Em color styled in region: #008000.</em> | |
34 </div> | |
35 <div id="div52"> | |
36 Text color styled in region: #00ff00. | |
37 <em>Em color styled in region: #008000.</em> | |
38 Text color styled in region: #00ff00. | |
39 </div> | |
40 </body> | |
41 </html> | |
OLD | NEW |