Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/crashtests/background-parser.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>No crash when reading background shorthand with layered values</title>
<style>
.absent {
background: #fff url(foo.png) no-repeat left 4px;
}
body {
background: #fff;
}
</style>
<script>
document.styleSheets[0].cssRules[1].style.background;
</script>