OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 #article1 { -webkit-flow-into: flow1; } | 4 #article1 { -webkit-flow-into: flow1; } |
5 #region1 { -webkit-flow-from: flow1; position: absolute; top: 10px; width: 350px
; height: 25px;} | 5 #region1 { -webkit-flow-from: flow1; position: absolute; top: 10px; width: 350px
; height: 25px;} |
6 #p1 { color: #ff0000; } | 6 #p1 { color: #ff0000; } |
7 @-webkit-region #region1 { | 7 @-webkit-region #region1 { |
8 #p1 { color: #008000; } | 8 #p1 { color: #008000; } |
9 } | 9 } |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 Tests that webkit css region styling can be parsed correctly. Test passes if it
doesn't crash. | 32 Tests that webkit css region styling can be parsed correctly. Test passes if it
doesn't crash. |
33 </p> | 33 </p> |
34 | 34 |
35 <div id="article1"> | 35 <div id="article1"> |
36 <p id="p1">P color styled in region: #008000.</p> | 36 <p id="p1">P color styled in region: #008000.</p> |
37 </div> | 37 </div> |
38 <div id="region1" class="regionBox"></div> | 38 <div id="region1" class="regionBox"></div> |
39 | 39 |
40 </body> | 40 </body> |
41 </html> | 41 </html> |
OLD | NEW |