mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1153516. Stop using loose is() comparisons in test_dom_xrays.html. r=bholley
This commit is contained in:
parent
6c598883d1
commit
5c0ebc7a8f
@ -39,9 +39,9 @@ function checkXrayProperty(obj, name, values)
|
|||||||
var pd = Object.getOwnPropertyDescriptor(obj, name);
|
var pd = Object.getOwnPropertyDescriptor(obj, name);
|
||||||
ok(pd, "getOwnPropertyDescriptor should see \"" + name + "\" through Xrays");
|
ok(pd, "getOwnPropertyDescriptor should see \"" + name + "\" through Xrays");
|
||||||
if (pd && pd.get) {
|
if (pd && pd.get) {
|
||||||
is(pd.get.call(instance), value, "Should get the right value for \"" + name + "\" through Xrays");
|
ise(pd.get.call(instance), value, "Should get the right value for \"" + name + "\" through Xrays");
|
||||||
} else {
|
} else {
|
||||||
is(obj[name], value, "Should get the right value for \"" + name + "\" through Xrays");
|
ise(obj[name], value, "Should get the right value for \"" + name + "\" through Xrays");
|
||||||
}
|
}
|
||||||
if (pd && pd.enumerable) {
|
if (pd && pd.enumerable) {
|
||||||
ok(Object.keys(obj).indexOf("" + name) > -1, "Enumerating the Xray should return \"" + name + "\"");
|
ok(Object.keys(obj).indexOf("" + name) > -1, "Enumerating the Xray should return \"" + name + "\"");
|
||||||
@ -104,7 +104,9 @@ function test()
|
|||||||
|
|
||||||
// HTMLDocument
|
// HTMLDocument
|
||||||
// Unforgeable properties live on the instance.
|
// Unforgeable properties live on the instance.
|
||||||
checkXrayProperty(doc, "location", [ document.getElementById("t").src ]);
|
checkXrayProperty(doc, "location", [ win.location ]);
|
||||||
|
ise(String(win.location), document.getElementById("t").src,
|
||||||
|
"Should have the right stringification");
|
||||||
|
|
||||||
// HTMLHtmlElement
|
// HTMLHtmlElement
|
||||||
var elem = doc.documentElement;
|
var elem = doc.documentElement;
|
||||||
|
Loading…
Reference in New Issue
Block a user