mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
686 B
HTML
28 lines
686 B
HTML
<!doctype html public '-//W3C//DTD HTML 4.01//EN'
|
|
'http://www.w3.org/TR/html4/strict.dtd'>
|
|
<html>
|
|
|
|
<head>
|
|
<title>style sheet reload</title>
|
|
<meta name="GENERATOR" content="Arachnophilia 4.0">
|
|
<meta name="FORMATTER" content="Arachnophilia 4.0">
|
|
<link rel="stylesheet" title="Default" href="bug92868_1_test1.css">
|
|
<link rel="alternate stylesheet" title="test2" href="bug92868_1_test2.css">
|
|
<script>
|
|
function change_sheet() {
|
|
document.styleSheets[0].disabled = true;
|
|
document.styleSheets[1].disabled = false;
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="change_sheet()">
|
|
|
|
the text should be courier 24pt
|
|
<table><tr><td>inside a cell</td></tr></table>
|
|
<div>inside a div</div>
|
|
</body>
|
|
|
|
</html>
|