blob: 6b5982c3ea106387f45b7f69ca9e1311239c1a15 [file] [log] [blame]
<!DOCTYPE html>
<style>
div { background: url(#); }
div { background: -webkit-image-set(url(#) 1x); }
</style>
<div style="transition: 1s">This test passes if it does not crash.</div>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
window.addEventListener('load', function() {
document.styleSheets[0].deleteRule(1);
if (window.testRunner) {
testRunner.notifyDone();
}
});
</script>