mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
20 lines
505 B
HTML
20 lines
505 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body { color: green }
|
|
</style>
|
|
<link rel="stylesheet"
|
|
href="data:text/css,@media no-such-medium { body { color: red } }"
|
|
type="text/css">
|
|
<link rel="stylesheet"
|
|
href="data:text/css,@media no-such-medium { body { color: red } }"
|
|
type="text/css">
|
|
<script>
|
|
// Force cloning of the second linked sheet
|
|
document.styleSheets[2].cssRules[0];
|
|
</script>
|
|
</head>
|
|
<body>test</body>
|
|
</html>
|