Bug 1319237 - Disable WebDriver navigation to file: protocol test; r=maja_zf
MozReview-Commit-ID: 3SlvHmggRET
--- a/testing/web-platform/tests/webdriver/navigation.py
+++ b/testing/web-platform/tests/webdriver/navigation.py
@@ -60,22 +60,26 @@ def test_get_current_url_payload(http, s
assert isinstance(body["value"], types.StringTypes)
def test_get_current_url_special_pages(session):
session.url = "about:blank"
assert session.url == "about:blank"
+"""
+Disabled due to https://bugzilla.mozilla.org/show_bug.cgi?id=1332122
+
# TODO(ato): This test requires modification to pass on Windows
def test_get_current_url_file_protocol(session):
# tests that the browsing context remains the same
# when navigated privileged documents
session.url = "file:///"
assert session.url == "file:///"
+"""
# TODO(ato): Test for http:// and https:// protocols.
# We need to expose a fixture for accessing
# documents served by wptserve in order to test this.
def test_get_current_url_malformed_url(session):