diff options
author | Chris Peterson <cpeterson@mozilla.com> | 2019-12-18 13:36:53 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-12-18 13:36:53 +0100 |
commit | eea149e73234a34038b45f0f53e207c3bcb3b9e7 (patch) | |
tree | 448943d9ddbfc001f8e8addee79ccec68f3b687a /dom/tests/mochitest | |
parent | 0f67e7b22c103b0358917143be185900a2434bde (diff) | |
download | UXP-eea149e73234a34038b45f0f53e207c3bcb3b9e7.tar UXP-eea149e73234a34038b45f0f53e207c3bcb3b9e7.tar.gz UXP-eea149e73234a34038b45f0f53e207c3bcb3b9e7.tar.lz UXP-eea149e73234a34038b45f0f53e207c3bcb3b9e7.tar.xz UXP-eea149e73234a34038b45f0f53e207c3bcb3b9e7.zip |
Issue #1328 - Part 3: Add fuzz to reftests and fix misc other tests.
Diffstat (limited to 'dom/tests/mochitest')
-rw-r--r-- | dom/tests/mochitest/chrome/selectAtPoint.html | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/dom/tests/mochitest/chrome/selectAtPoint.html b/dom/tests/mochitest/chrome/selectAtPoint.html index 8c625e6f7..6326b500f 100644 --- a/dom/tests/mochitest/chrome/selectAtPoint.html +++ b/dom/tests/mochitest/chrome/selectAtPoint.html @@ -127,13 +127,7 @@ targetPoint = { xPos: rect.left + ((charDims.width * 4) + (charDims.width / 2)), yPos: rect.top + (charDims.height / 2) }; setEnd(dwu, targetPoint.xPos, targetPoint.yPos, Ci.nsIDOMWindowUtils.SELECT_CHARACTER); - if (isLinux || isMac) { - // XXX I think this is a bug, the right hand selection is 4.5 characters over with a - // monspaced font. what we want: t(te)s(ts)election1 what we get: t(te)st(se)lection1 - checkSelection(document, "split selection", "tese"); - } else if (isWindows) { - checkSelection(document, "split selection", "tets"); - } + checkSelection(document, "split selection", "tets"); // Trying to select where there's no text, should fail but not throw let result = dwu.selectAtPoint(rect.left - 20, rect.top - 20, Ci.nsIDOMWindowUtils.SELECT_CHARACTER, false); @@ -228,7 +222,7 @@ <style type="text/css"> body { - font-family: monospace; + font-family: 'Courier New'; margin-left: 40px; margin-top: 40px; padding: 0; @@ -267,7 +261,7 @@ body { <br /> -<iframe id="frame1" src="data:text/html,<html><body style='margin: 0; padding: 0; font-family: monospace;' onload='window.parent.onFrameLoad();'><div id='sel2'>ttestselection2 Lorem ipsum dolor sit amet, at duo debet graeci, vivendum vulputate per ut.</div><br/><br/></body></html>"></iframe> +<iframe id="frame1" src="data:text/html,<html><body style='margin: 0; padding: 0; font-family: \'Courier New\';' onload='window.parent.onFrameLoad();'><div id='sel2'>ttestselection2 Lorem ipsum dolor sit amet, at duo debet graeci, vivendum vulputate per ut.</div><br/><br/></body></html>"></iframe> <br/> |