mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
18 lines
415 B
HTML
18 lines
415 B
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<title>Test</title>
|
|
<link rel=match href=stylesheet-media-ref.html>
|
|
<style>
|
|
body {
|
|
color: green;
|
|
}
|
|
</style>
|
|
<link rel=stylesheet id=link>
|
|
<script>
|
|
// This tests for a bug in Servo, where it would treat the media attribute as
|
|
// if it was the href attribute.
|
|
var link = document.getElementById("link");
|
|
link.setAttribute("media", "all")
|
|
</script>
|
|
<p>This text should be green.
|