RetroZilla/layout/html/tests/table/bugs/bug92868_1.html
2015-10-20 23:03:22 -04:00

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>