| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/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 16 matching lines...) Expand all Loading... |
| 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: Different variations on the value of 'f'</title> | 31 <title>CSS Test: Different variations on the value of 'f'</title> |
| 32 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> | 32 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 33 <link rel="help" href="http://www.w3.org/TR/css3-background/#border-radi
us" /> | 33 <link rel="help" href="http://www.w3.org/TR/css3-background/#border-radi
us" /> |
| 34 <meta name="flags" content="" /> | 34 <meta name="flags" content="" /> |
| 35 <meta name="assert" content="When the value of 'f' is less than 1, then
all corner radii are reduced by multiplying them with 'f'." /> | 35 <meta name="assert" content="When the value of 'f' is less than 1, then
all corner radii are reduced by multiplying them with 'f'." /> |
| 36 <style type="text/css"> | 36 <style type="text/css"> |
| 37 body { overflow: hidden; } |
| 37 div | 38 div |
| 38 { | 39 { |
| 39 border: 10px red solid; | 40 border: 10px red solid; |
| 40 width: 80px; | 41 width: 80px; |
| 41 height: 80px; | 42 height: 80px; |
| 42 } | 43 } |
| 43 #reference1 | 44 #reference1 |
| 44 { | 45 { |
| 45 border-radius: 50px 50px 30px 30px; | 46 border-radius: 50px 50px 30px 30px; |
| 46 } | 47 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 </td> | 101 </td> |
| 101 <td> | 102 <td> |
| 102 <div id="reference3"></div> | 103 <div id="reference3"></div> |
| 103 <div id="test3"></div> | 104 <div id="test3"></div> |
| 104 </td> | 105 </td> |
| 105 </tr> | 106 </tr> |
| 106 </table> | 107 </table> |
| 107 <div id="reference4"></div> | 108 <div id="reference4"></div> |
| 108 <div id="test4"></div> | 109 <div id="test4"></div> |
| 109 </body> | 110 </body> |
| 110 </html> | 111 </html> |
| OLD | NEW |