blob: 045061cd2f215a09edccd08dac842bbe68175ff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:html="http://www.w3.org/1999/xhtml"
onload="setTimeout(boom, 30);"
class="reftest-wait">
<script>
function boom()
{
document.getElementById("sss").removeAttribute('value');
document.documentElement.removeAttribute("class");
}
</script>
<foreignObject width="500" height="500" y="300">
<div xmlns="http://www.w3.org/1999/xhtml">
<table border="1">
<tr>
<td>Foo</td>
</tr>
<tr>
<td><input type="text" value="Baz" id="sss" /></td>
</tr>
</table>
</div>
</foreignObject>
</svg>
|