mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
561 B
HTML
28 lines
561 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title> reflow style changed - target: outertable frame </title>
|
|
<script type="text/javascript">
|
|
|
|
function buildTable_dom_html() {
|
|
|
|
var d1 = document.getElementsByTagName("table")[0];
|
|
d1.setAttribute("style", "font-size:30pt;");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="buildTable_dom_html()" >
|
|
<div>
|
|
<table border="1">
|
|
<tr>
|
|
<td>
|
|
aaaaa
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|