bernd.mielke%snafu.de 3050d6fba3 adding style sheet switch testcase to table regression testcases not part of the build
git-svn-id: svn://10.0.0.236/trunk@116309 18797224-902f-48f8-a5cc-f745e15eee43
2002-03-10 17:00:27 +00: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>