Commit 826318d1 authored by Chromium WPT Sync's avatar Chromium WPT Sync Committed by Commit Bot

Import wpt@d9587de4ff827d75fefbd72f42e834078094202d

Using wpt-import in Chromium 77db7fb7.
With Chromium commits locally applied on WPT:
8d1dda31 "Revert "Adds a test for basic WebRTC video codec conformance.""


Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/17145

Note to sheriffs: This CL imports external tests and adds
expectations for those tests; if this CL is large and causes
a few new failures, please fix the failures by adding new
lines to TestExpectations rather than reverting. See:
https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md

Directory owners for changes in this CL:
yhirano@chromium.org, mkwst@chromium.org, japhet@chromium.org:
  external/wpt/fetch

TBR=raphael.kubo.da.costa@intel.com

No-Export: true
Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_layout_ng
Change-Id: I0aaea7e106de989a660cd820d618d4a7bb774486
Reviewed-on: https://chromium-review.googlesource.com/1049029
Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org>
Reviewed-by: default avatarBlink WPT Bot <blink-w3c-test-autoroller@chromium.org>
Cr-Commit-Position: refs/heads/master@{#556691}
parent 71661450
......@@ -875,7 +875,6 @@ crbug.com/591099 external/wpt/html/syntax/parsing/named-character-references.htm
crbug.com/591099 external/wpt/html/the-xhtml-syntax/parsing-xhtml-documents/xhtml-mathml-dtd-entity-1.htm [ Pass Timeout ]
crbug.com/591099 external/wpt/html/the-xhtml-syntax/parsing-xhtml-documents/xhtml-mathml-dtd-entity-4.htm [ Pass Timeout ]
crbug.com/591099 external/wpt/html/the-xhtml-syntax/parsing-xhtml-documents/xhtml-mathml-dtd-entity-7.htm [ Pass Timeout ]
crbug.com/591099 external/wpt/http/basic-auth-cache-test.html [ Timeout ]
crbug.com/591099 external/wpt/longtask-timing/longtask-in-sibling-iframe.html [ Pass Timeout ]
crbug.com/591099 external/wpt/media-source/URL-createObjectURL-revoke.html [ Failure ]
crbug.com/591099 external/wpt/media-source/mediasource-getvideoplaybackquality.html [ Timeout ]
......
......@@ -2789,6 +2789,9 @@ crbug.com/832071 external/wpt/service-workers/service-worker/worker-client-id.ht
crbug.com/832071 virtual/navigation-mojo-response/external/wpt/service-workers/service-worker/worker-client-id.https.html [ Failure ]
# ====== New tests from wpt-importer added here ======
crbug.com/626703 virtual/outofblink-cors/external/wpt/fetch/http-cache/basic-auth-cache-test.html [ Timeout ]
crbug.com/626703 external/wpt/fetch/http-cache/basic-auth-cache-test.html [ Timeout ]
crbug.com/626703 [ Linux Mac10.13 ] external/wpt/pointerevents/pointerevent_touch-action-button-test_touch-manual.html [ Skip ]
crbug.com/626703 external/wpt/css/css-fonts/font-feature-settings-descriptor-01.html [ Failure ]
crbug.com/626703 [ Linux Win10 ] external/wpt/fetch/api/redirect/redirect-count.any.worker.html [ Timeout ]
crbug.com/626703 [ Linux Win10 ] virtual/outofblink-cors/external/wpt/fetch/api/redirect/redirect-count.any.html [ Timeout ]
......@@ -3177,7 +3180,6 @@ crbug.com/626703 external/wpt/html/semantics/grouping-content/the-li-element/gro
crbug.com/626703 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-skip-no-boxes.html [ Failure ]
crbug.com/626703 external/wpt/html/semantics/scripting-1/the-script-element/async_007.htm [ Timeout ]
crbug.com/626703 external/wpt/html/semantics/scripting-1/the-script-element/async_010.htm [ Timeout ]
crbug.com/626703 external/wpt/http/basic-auth-cache-test.html [ Timeout ]
crbug.com/626703 external/wpt/IndexedDB/request-abort-ordering.html [ Pass Failure ]
crbug.com/626703 external/wpt/media-source/mediasource-avtracks.html [ Failure Crash ]
crbug.com/626703 external/wpt/media-source/mediasource-getvideoplaybackquality.html [ Timeout Failure ]
......
......@@ -9,12 +9,12 @@
<script type="text/javascript">
function loadAuth() {
var authUrl = 'http://testuser:testpass@' + window.location.host + '/http/resources/securedimage.py';
var authUrl = 'http://testuser:testpass@' + window.location.host + '/fetch/http-cache/resources/securedimage.py';
document.getElementById('auth').src = authUrl;
}
function loadNoAuth() {
var noAuthUrl = 'http://' + window.location.host + '/http/resources/securedimage.py';
var noAuthUrl = 'http://' + window.location.host + '/fetch/http-cache/resources/securedimage.py';
document.getElementById('noauth').src = noAuthUrl;
}
......
# -*- coding: utf-8 -
def main(request, response):
image_url = str.replace(request.url, "http/resources/securedimage.py", "images/green.png")
image_url = str.replace(request.url, "fetch/http-cache/resources/securedimage.py", "images/green.png")
if "authorization" not in request.headers:
response.status = 401
......
See `/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/parsing.html` for more detailed parsing tests (shared with `<meta http-equiv=refresh>`).
See `../../html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/parsing.html` for more detailed parsing tests (shared with `<meta http-equiv=refresh>`).
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment