blob: 47034c6a80bced74115d615f2d0a032d0a5dbb58 [file] [log] [blame]
<!DOCTYPE HTML>
<title>content element test for select attribute, null and undefined arguments</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
test(function() {
var element = document.createElement('content');
assert_equals(element.select, '');
element.select = null
assert_equals(element.select, 'null');
element.select = undefined
assert_equals(element.select, 'undefined');
});
</script>