mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 342619, disable left check on Linux for now
This commit is contained in:
parent
fa07c18630
commit
8f0bd73841
@ -153,7 +153,9 @@ function contextMenuPopupShown()
|
||||
var rect = popup.getBoundingClientRect();
|
||||
var labelrect = document.getElementById("label").getBoundingClientRect();
|
||||
|
||||
is(rect.left, labelrect.left + 6, gTests[gTestIndex] + " left");
|
||||
// XXXndeakin disable test on Linux for now
|
||||
if (navigator.platform.indexOf("Lin") == -1)
|
||||
is(rect.left, labelrect.left + 6, gTests[gTestIndex] + " left");
|
||||
switch (gTests[gTestIndex]) {
|
||||
case "context menu enough space below":
|
||||
is(rect.top, labelrect.top + 6, gTests[gTestIndex] + " top");
|
||||
|
Loading…
Reference in New Issue
Block a user