mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
406 B
HTML
16 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>
|