1
0
Fork 0
firefox/layout/reftests/css-import/436261-1.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
406 B
HTML

<!DOCTYPE html>
<html>
<body>
<script type="text/javascript">
var el = document.createElement("link");
el.type = "text/css";
el.rel = "stylesheet";
el.href = "outer-sheet.css";
var h = document.getElementsByTagName("HEAD")[0];
h.appendChild(el);
el.title = "theme"; // comment this line to make the test work!
</script>
<p>test</p>
</body>
</html>