mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-14 19:50:12 +01:00
21 lines
369 B
HTML
21 lines
369 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
tr[name="foo"] {
|
||
|
background-color: red;
|
||
|
font-size: 200%;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<button onclick="document.getElementById('row1').setAttribute('name', 'foo')">
|
||
|
Click me!
|
||
|
</button>
|
||
|
|
||
|
<table border>
|
||
|
<tr id="row1">This<td>will<td>show<td>a<td>reflow<td>bug</tr>
|
||
|
<tr><td>This<td>is<td>a<td>normal<td>row</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|