blob: 07e82bfc3da990865ce85e10157b4ea23cf1691d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<xht:input id="test"></xht:input>
<script>
var source = document.getElementById('test');
var imported = document.importNode(source, true);
shouldBe('imported.constructor', 'source.constructor');
</script>
</body>
</html>
|