OLD | NEW |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR
/xhtml1/DTD/xhtml1-strict.dtd"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR
/xhtml1/DTD/xhtml1-strict.dtd"> |
2 <!-- | 2 <!-- |
3 Internet Explorer Test Pages Copyright © 2012 Microsoft Corporation. All rights
reserved. | 3 Internet Explorer Test Pages Copyright © 2012 Microsoft Corporation. All rights
reserved. |
4 | 4 |
5 Redistribution and use in source and binary forms, with or without modification
, | 5 Redistribution and use in source and binary forms, with or without modification
, |
6 are permitted provided that the following conditions are met: | 6 are permitted provided that the following conditions are met: |
7 | 7 |
8 Redistributions of source code must retain the above copyright notice, this lis
t of | 8 Redistributions of source code must retain the above copyright notice, this lis
t of |
9 conditions and the following disclaimer. | 9 conditions and the following disclaimer. |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUE
NTIAL | 22 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUE
NTIAL |
23 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERV
ICES; | 23 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERV
ICES; |
24 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY | 24 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY |
25 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGE
NCE OR | 25 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGE
NCE OR |
26 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE | 26 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE |
27 POSSIBILITY OF SUCH DAMAGE. | 27 POSSIBILITY OF SUCH DAMAGE. |
28 --> | 28 --> |
29 <html xmlns="http://www.w3.org/1999/xhtml"> | 29 <html xmlns="http://www.w3.org/1999/xhtml"> |
30 <head> | 30 <head> |
31 <title>CSS Test: Column boxes do not establish containing blocks for pos
ition absolute</title> | 31 <title>CSS Test: Column boxes do not establish containing blocks for pos
ition absolute</title> |
| 32 <script src="../../../resources/ahem.js"></script> |
32 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> | 33 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
33 <link rel="help" href="http://www.w3.org/TR/css3-multicol/#the-multi-col
umn-model"/> | 34 <link rel="help" href="http://www.w3.org/TR/css3-multicol/#the-multi-col
umn-model"/> |
34 <meta name="flags" content="" /> | 35 <meta name="flags" content="" /> |
35 <meta name="assert" content="Column boxes that contain the static positi
on of an absolutely positioned element do not create a containing block. Absolut
ely positioned elements are positioned based on the nearest ancestor element tha
t is not static postioned." /> | 36 <meta name="assert" content="Column boxes that contain the static positi
on of an absolutely positioned element do not create a containing block. Absolut
ely positioned elements are positioned based on the nearest ancestor element tha
t is not static postioned." /> |
36 <style type="text/css"> | 37 <style type="text/css"> |
37 div | 38 div |
38 { | 39 { |
39 -moz-column-count: 2; | 40 -moz-column-count: 2; |
40 -moz-column-width: 5em; | 41 -moz-column-width: 5em; |
41 -moz-column-gap: 1em; | 42 -moz-column-gap: 1em; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 } | 75 } |
75 </style> | 76 </style> |
76 </head> | 77 </head> |
77 <body> | 78 <body> |
78 <p>Test passes if there is no red visible on the page.</p> | 79 <p>Test passes if there is no red visible on the page.</p> |
79 <div> | 80 <div> |
80 XXXXX XXXXX XXXXX XXXXX XXXXX XXXXX XXXXX XXXXX XXXXX XX<span>XX</sp
an><span id="span2">XX XX</span>X XX<span>XX</span>X XXXXX | 81 XXXXX XXXXX XXXXX XXXXX XXXXX XXXXX XXXXX XXXXX XXXXX XX<span>XX</sp
an><span id="span2">XX XX</span>X XX<span>XX</span>X XXXXX |
81 </div> | 82 </div> |
82 </body> | 83 </body> |
83 </html> | 84 </html> |
OLD | NEW |