Remove tests for unimplemented features.

This commit is contained in:
Ms2ger 2014-06-02 17:42:10 +02:00
parent c1d2d700c5
commit 9346a66017
2 changed files with 0 additions and 10 deletions

View file

@ -11,7 +11,6 @@ is_a(ev, UIEvent);
is_a(ev, MouseEvent);
is(ev.screenX, 150);
is(ev.detail, 100);
is(ev.getModifierState("ctrl"), false);
finish();
</script>

View file

@ -9,20 +9,11 @@ is(window.navigator, window.navigator);
is_a(window.navigator, Navigator);
var nav = window.navigator;
is(nav.doNotTrack, "unspecified");
is(nav.vendor, "");
is(nav.vendorSub, "");
is(nav.product, "Gecko");
is(nav.javaEnabled(), false);
is(nav.taintEnabled(), false);
is(nav.appName, "Netscape");
is(nav.appCodeName, "Mozilla");
// todo
is(nav.appVersion, "");
is(nav.platform, "");
is(nav.userAgent, "");
is(nav.language, null);
is(nav.onLine, true);
finish();
</script>
</body>