about summary refs log tree commit diff stats
path: root/test/js/reflect.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/js/reflect.html')
-rw-r--r--test/js/reflect.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/js/reflect.html b/test/js/reflect.html
new file mode 100644
index 00000000..45debe39
--- /dev/null
+++ b/test/js/reflect.html
@@ -0,0 +1,18 @@
+<!doctype html>
+<div id=abc>Fail</div>
+<a class=claz target="abcd">test test</a>
+<script>
+(function() {
+	let x = document.getElementById("abc")
+	let a = document.getElementsByTagName("a")[0];
+	if (a.target != "abcd") return;
+	a.target = "defg";
+	if (a.target != "defg") return;
+	if (a.relList != "") return;
+	a.relList = "...";
+	if (a.relList != "...") return;
+	if (a.className != "claz") return;
+	x.textContent = "Success";
+	a.remove(); /* ignore target... */
+})()
+</script>