OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <!-- There should be no red on this page. --> |
| 4 <body> |
| 5 <svg width="98%" height="400px"> |
| 6 <pattern id="pattern" patternUnits="userSpaceOnUse" y="20" width="400" height=
"120" patternTransform="scale(0.4)"> |
| 7 <image onload="top.load()" xlink:href="resources/red-at-12-oclock-with-color
-profile.jpg" width="400" height="400"/> |
| 8 </pattern> |
| 9 <text x="10" y="0.5em" style="fill: url(#pattern); font: 108pt Ahem, sans-seri
f; -webkit-font-smoothing: none;"> |
| 10 ▅▅▅▅▅▅▅▅▅▅▅
;▅▅▅▅▅ |
| 11 </text> |
| 12 </svg> |
| 13 </body> |
| 14 |
| 15 <script> |
| 16 function load() { |
| 17 if (window.testRunner) |
| 18 testRunner.setColorProfile('test', done); |
| 19 } |
| 20 |
| 21 function done() { |
| 22 setTimeout(function() { testRunner.notifyDone() }, 0); |
| 23 } |
| 24 |
| 25 if (window.testRunner) { |
| 26 testRunner.dumpAsTextWithPixelResults(); |
| 27 testRunner.waitUntilDone(); |
| 28 } |
| 29 </script> |
| 30 </html> |
OLD | NEW |