mirror of
https://github.com/servo/servo
synced 2026-05-02 12:26:06 +02:00
This is the same configuration as gecko and is convenient for making changes compared to using releases from pypi
11 lines
272 B
HTML
11 lines
272 B
HTML
<title>rel=match that should fail</title>
|
|
<link rel=match href=red.html>
|
|
<style>
|
|
:root {background-color:red}
|
|
</style>
|
|
<body class="reftest-wait">
|
|
<script>
|
|
setTimeout(function() {
|
|
document.documentElement.style.backgroundColor = "green";
|
|
body.className = "";
|
|
}, 2000); |