summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/chrome/test_queryCaretRect.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tests/mochitest/chrome/test_queryCaretRect.html')
-rw-r--r--dom/tests/mochitest/chrome/test_queryCaretRect.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/dom/tests/mochitest/chrome/test_queryCaretRect.html b/dom/tests/mochitest/chrome/test_queryCaretRect.html
new file mode 100644
index 0000000000..fa1b643d23
--- /dev/null
+++ b/dom/tests/mochitest/chrome/test_queryCaretRect.html
@@ -0,0 +1,22 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <title>nsIDOMWindowUtils::sendQueryContentEvent w/QUERY_CARET_RECT test</title>
+ <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
+ <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
+<script type="application/javascript">
+ SimpleTest.waitForExplicitFinish();
+ function done() {
+ testwindow.close();
+ SimpleTest.finish();
+ }
+ var isWindows = ("@mozilla.org/windows-registry-key;1" in Cc);
+ var testwindow = window.open("queryCaretRect" + (isWindows ? "Win" : "Unix") + ".html",
+ "_new", "width=800,height=800");
+</script>
+</head>
+<body>
+<p id="display"></p>
+<div id="content" style="display: none">
+</body>
+</html>