Bug 1154878 another followup. Update wpt tests to not expect navigator.taintEnabled() in workers, because we still have a CLOSED TREE

This commit is contained in:
Boris Zbarsky 2015-04-15 18:18:29 -04:00
parent 3ddd60b52d
commit 2c3e700298
2 changed files with 0 additions and 5 deletions

View File

@ -22,10 +22,6 @@ function run_test() {
assert_equals(navigator.product, "Gecko");
}, "product");
test(function() {
assert_false(navigator.taintEnabled());
}, "taintEnabled");
test(function() {
assert_equals(typeof navigator.userAgent, "string",
"navigator.userAgent should be a string");

View File

@ -96,7 +96,6 @@ interface NavigatorID {
readonly attribute DOMString appVersion;
readonly attribute DOMString platform;
readonly attribute DOMString product; // constant "Gecko"
boolean taintEnabled(); // constant false
readonly attribute DOMString userAgent;
};