summaryrefslogtreecommitdiff
path: root/test/testcases/tests/level2/html/files/select.xml
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-06-03 09:09:25 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:12 +0530
commit5c0d74591877de6bcced0a6ba5836b4a2df1c5a7 (patch)
tree3d7d6c34fb46d2c8e04db26d916403b80de4ba3f /test/testcases/tests/level2/html/files/select.xml
parent47847ac9ba3d26771e8007761e5da50e61daf734 (diff)
downloadlibdom-5c0d74591877de6bcced0a6ba5836b4a2df1c5a7.tar.gz
libdom-5c0d74591877de6bcced0a6ba5836b4a2df1c5a7.tar.bz2
Xselect element && disabling IsIndex Element
Diffstat (limited to 'test/testcases/tests/level2/html/files/select.xml')
-rw-r--r--test/testcases/tests/level2/html/files/select.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/testcases/tests/level2/html/files/select.xml b/test/testcases/tests/level2/html/files/select.xml
new file mode 100644
index 0000000..491a74c
--- /dev/null
+++ b/test/testcases/tests/level2/html/files/select.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "xhtml1-transitional.dtd">
+<html xmlns='http://www.w3.org/1999/xhtml'>
+<head>
+<title>NIST DOM HTML Test - SELECT</title>
+</head>
+<body onload="parent.loadComplete()">
+<form id="form1" action="./files/getData.pl" method="post">
+<p>
+<select id="selectId" dir="ltr" tabindex="7" name="select1" multiple="multiple" size="1">
+<option selected="selected" value="EMP1">EMP10001</option>
+<option>EMP10002</option>
+<option>EMP10003</option>
+<option>EMP10004</option>
+<option>EMP10005</option>
+</select>
+</p>
+</form>
+<p>
+<select name="select2">
+<option>EMP20001</option>
+<option>EMP20002</option>
+<option>EMP20003</option>
+<option>EMP20004</option>
+<option>EMP20005</option>
+</select>
+</p>
+<p>
+<select name="select3" disabled="disabled" tabindex="1">
+<option>EMP30001</option>
+<option>EMP30002</option>
+<option>EMP30003</option>
+<option>EMP30004</option>
+<option>EMP30005</option>
+</select>
+</p>
+</body>
+</html>
+