diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /dom/tests/mochitest/dom-level2-html/files/textarea.xhtml | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/tests/mochitest/dom-level2-html/files/textarea.xhtml')
-rw-r--r-- | dom/tests/mochitest/dom-level2-html/files/textarea.xhtml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dom/tests/mochitest/dom-level2-html/files/textarea.xhtml b/dom/tests/mochitest/dom-level2-html/files/textarea.xhtml new file mode 100644 index 0000000000..eb6ca48bac --- /dev/null +++ b/dom/tests/mochitest/dom-level2-html/files/textarea.xhtml @@ -0,0 +1,27 @@ +<?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 - TEXTAREA</title> +</head> +<body onload="parent.loadComplete()"> +<form id="form1" action="./files/getData.pl" method="post"> +<p> +<textarea name="text1" cols="20" rows="7" accesskey="c" tabindex="5">TEXTAREA1</textarea> +<input type="submit" name="submit1" value="Submit1"/> +<input type="reset" name="reset1" value="Reset1"/> +</p> +</form> +<p> +<textarea name="text2" cols="50" rows="2" disabled="disabled">TEXTAREA2</textarea> +<input type="submit" name="submit2" value="Submit2"/> +<input type="reset" name="reset2" value="Reset2"/> +<textarea name="text2" cols="50" rows="2" readonly="readonly">TEXTAREA3</textarea> +<input type="submit" name="submit3" value="Submit3"/> +<input type="reset" name="reset3" value="Reset3"/> +</p> +</body> +</html> + |