| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <body> |
| 3 <!-- This test verifies if CSS sprite image is shown, instead of placeholder i
mage. --> |
| 4 <div id="sprite1"></div> |
| 5 <div id="sprite2"></div> |
| 6 <div id="sprite3"></div> |
| 7 <div id="sprite4"></div> |
| 8 <script> |
| 9 window.internals.settings.setFetchImagePlaceholders(true); |
| 10 document.getElementById("sprite1").style.cssText = 'width: 40px; height: 40p
x; background: url(https://127.0.0.1:8443/resources/square200.png) 0 0;'; |
| 11 document.getElementById("sprite2").style.cssText = 'width: 40px; height: 40p
x; background: url(https://127.0.0.1:8443/resources/square200.png) 0 10px;'; |
| 12 document.getElementById("sprite3").style.cssText = 'width: 40px; height: 40p
x; background: url(https://127.0.0.1:8443/resources/square200.png) 10px 0;'; |
| 13 document.getElementById("sprite4").style.cssText = 'width: 40px; height: 40p
x; background: url(https://127.0.0.1:8443/resources/square200.png) 10px 10px;'; |
| 14 </script> |
| 15 </body> |
| OLD | NEW |