mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|