| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 #div { | 5 #div { |
| 6 width: 64px; | 6 width: 64px; |
| 7 height: 128px; | 7 height: 128px; |
| 8 background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/
svg" width="32" height="128"><circle fill="#3364c2" cx="16" cy="16" r="16" /><ci
rcle fill="#f31900" cx="16" cy="48" r="16" /><circle fill="#f7d72b" cx="16" cy="
80" r="16" /><circle fill="#44c400" cx="16" cy="112" r="16" /></svg>'); | 8 background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/
svg" width="32" height="128"><circle fill="#3364c2" cx="16" cy="16" r="16" /><ci
rcle fill="#f31900" cx="16" cy="48" r="16" /><circle fill="#f7d72b" cx="16" cy="
80" r="16" /><circle fill="#44c400" cx="16" cy="112" r="16" /></svg>'); |
| 9 background-size: 32px 128px; | 9 background-size: 32px 128px; |
| 10 background-repeat: repeat; | 10 background-repeat: repeat; |
| 11 } | 11 } |
| 12 p { | 12 p { |
| 13 font-size: x-small; | 13 font-size: x-small; |
| 14 } | 14 } |
| 15 </style> | 15 </style> |
| 16 <script> | 16 <script> |
| 17 function setScale() { | 17 function setScale() { |
| 18 if (window.internals) | 18 if (window.internals) |
| 19 window.internals.setPageScaleFactor(2, 0, 0); | 19 window.internals.setPageScaleFactor(2, 0, 0); |
| 20 } | 20 } |
| 21 </script> | 21 </script> |
| 22 </head> | 22 </head> |
| 23 <body onload="setScale()"> | 23 <body onload="setScale()"> |
| 24 <div id="div"></div> | 24 <div id="div"></div> |
| 25 <p>Test for WK110047: This test passes if there are 4 rows of 2 circles and they
all have sharp edges.</p> | 25 <p>Test for WK110047: This test passes if there are 4 rows of 2 circles and they
all have sharp edges.</p> |
| 26 </body> | 26 </body> |
| 27 </html> | 27 </html> |
| OLD | NEW |