blob: 389ba4194391e8f3595ecfaf0f17192d3ceca882 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
@layer imported {
div { color: blue; }
}
@layer imported, special;
@import url("data:text/css,div{color:red}") layer(special);
@layer imported {
div { color: green; }
}
</style>
</head>
<body>
<div>This should be green because the misplaced @import shouldn't parse</div>
</body>
</html>