mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
16 lines
242 B
HTML
16 lines
242 B
HTML
<!DOCTYPE html>
|
|
<!-- bogus assertion when one stylesheet contains two @import rules
|
|
specifying malformed URIs -->
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
|
|
@import 'data:css';
|
|
@import 'data:css';
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|