Chromium Code Reviews| Index: LayoutTests/fast/dom/content-element-select-null.html |
| diff --git a/LayoutTests/fast/dom/content-element-select-null.html b/LayoutTests/fast/dom/content-element-select-null.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..255be124960216a6863d5f66f39d0fd67923c8e5 |
| --- /dev/null |
| +++ b/LayoutTests/fast/dom/content-element-select-null.html |
| @@ -0,0 +1,16 @@ |
| +<!DOCTYPE HTML> |
| +<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'); |
| +}, ' content element test for select attribute, null and undefined arguments.'); |
|
philipj_slow
2015/07/21 07:27:20
If you like, you can put this in the <title> eleme
shiva.jm
2015/07/21 10:47:37
Done.
|
| + |
| +</script> |
| +</html> |
|
philipj_slow
2015/07/21 07:27:20
Remove </html> too :)
shiva.jm
2015/07/21 10:47:37
Done.
shiva.jm
2015/07/21 10:47:37
Done.
|