зеркало из https://github.com/mozilla/gecko-dev.git
578446 Коммитов
Автор | SHA1 | Сообщение | Дата |
---|---|---|---|
Masayuki Nakano | df8f5c37dc |
Bug 1430628 - TextInputHandler::HandleCommand() should use native key event when it dispatches a keypress event either initializing with native event or creating fake event r=m_kato
TextInputHandler::HandleCommand() has two bugs. One is, checking whether the key event has caused composition events. Even if it caused composition events, we decided to dispatch keypress event for emulating native behavior. Therefore, this patch removes the check of |currentKeyEvent->CanDispatchKeyPress()|. The other is, for making content handle dispatching keypress event as given command, it needs to dispatch a keypress event whose key combination will cause the command. However, HandleCommand() needs to set native key event since content may not refer key combination for some edit actions, they just refer command which is computed with native key event with NativeKeyBindings. Therefore, even if current native key event has already caused dispatching some events, HandleCommand() needs to set WidgetKeyboardEvent::mNativeKeyEvent to current native key event for NativeKeyBindings. Although it must be rare case, given key could be not related to the command or not key could cause the command. In this case, and perhaps in all cases, we should set all commands of dispatching keypress event before dispatching it. Howevever, this needs more work, so, we shouldn't do it in this bug to making it possible to uplift. Therefore, this patch makes always set mNativeKeyEvent to current native key event. So, just warning it when command is caused without native key event. MozReview-Commit-ID: 2MvDTw4ruAu --HG-- extra : rebase_source : 02a4ca980530aa16fa0e1aecd6d18fa42873c1dc extra : source : 1e3137db3fe9822f34b98d59fb928497caca466a |
|
Andrew Swan | 29864d9b88 |
Bug 1428234 Part 2: Force extensions database rebuild r=kmag
Prior to the first patch for this bug, users with non-ascii characters in the path to their profile directory got bad data in extensions.json. With that bug fixed, now force a rebuild to rescue those users. MozReview-Commit-ID: F3l87A67Ojc --HG-- extra : rebase_source : d28322dafdcdff4dcc00e9b816f3f47b8f425de6 |
|
Andrew Swan | ca99a26bae |
Bug 1428234 Part 1: Remove incorrect uses of persistentDescriptor in AddonManager r=emk,kmag
MozReview-Commit-ID: 3pyF58rQcoa --HG-- extra : rebase_source : c3d497b27f9172da1410080286ebca7d855b4597 |
|
Dorel Luca | f0dfa23b9e |
Backed out changeset 804f26b2c6b8 (bug 1428698) for xpcshell failure on toolkit/mozapps/extensions/test/xpcshell/test_bug397778.js on a CLOSED TREE
--HG-- extra : amend_source : 0a86497ef3fed6c36a638ccc640d1eccbe14bce6 |
|
Mike Hommey | 49993bfe85 |
Bug 1432390 - Allow to derive docker images from other in-tree images. r=dustin
So far, the best we've been able to do is to upload an image to the docker hub, and point an image's Dockerfile's FROM to the version uploaded onto the hub. That is a cumbersome process, and makes the use of "layered" docker images painful. This change allows to declare a parent docker image in the taskcluster/ci/docker-image/kind.yml definitions, which will be automatically loaded before building the image. The Dockerfile can then reference the image, using the DOCKER_IMAGE_PARENT argument, which will contain the full image name:tag. Some details are left off, for now, such as VOLUMEs. At this point, VOLUMEs should all be defined in leaf docker images. --HG-- extra : rebase_source : 221cff0ca5a91d694ff5c3626fe707c15ba45e23 |
|
Mike Hommey | fd6ffda3c8 |
Bug 1432390 - Make `mach taskcluster-build-image` talk directly to the docker socket in the image builder. r=dustin
Now that `mach taskcluster-build-image` can, we can avoid all the manual handling based on curl and jq in the image builder. An additional advantage on relying on `mach taskcluster-build-image` doing more is that less changes to the build-image.sh script will be necessary, and thus less updates of the image builder docker image. --HG-- extra : rebase_source : dd174d60675e41e4391894f28235c674c1840829 |
|
Mike Hommey | f5386c6b51 |
Bug 1432390 - Directly call the docker API over its unix socket instead of calling `docker build`. r=dustin
This allows to avoid writing out a tar file to then extract it to feed it to `docker build`. This is essentially what the image-builder docker image does, except it uses a temporary file for the tar. --HG-- extra : rebase_source : 8275d737e02714fc198d3ba3d3e62e3f18d8e0bf |
|
Mike Hommey | 378f47ff49 |
Bug 1432390 - Directly call the docker API over its unix socket instead of calling docker load. r=dustin
While spawning `docker load` is likely to work on developer machines, on automation, it requires a docker client that is the exact same version as the server running on the taskcluster worker for docker-in-docker, which is not convenient. The API required for `docker load` is rather simple, though, and can be mimicked quite easily. While this change in itself is not necessary for developer machines, it will allow to re-use the same command for the image-builder to load a parent docker images when deriving one from another. We could keep a code branch using `docker load` but it seems wasteful to maintain two branches when one can work for both use cases. --HG-- extra : rebase_source : d72956d7dd329b92564cbaa3fbfe0687d4d5d994 |
|
Mike Hommey | 16c5f4c5f4 |
Bug 1432390 - Use zstandard and requests modules instead of spawning curl | zstd in docker.load_image. r=dustin
The zstd command we spawn, if available at all, might be the wrong version: zstd changed its stream format in an incompatible way at some point, and the version shipped in e.g. Ubuntu 16.04 uses the old format, while the version taskcluster relies on uses the new format. Relying on gps's zstandard library allows to ensure we use the right version. Another advantage is that we can trivially pip install it in a virtualenv if it isn't available on the system running the command. If we're ridding ourselves of the subprocess spawning for zstd, we might as well cover curl as well. Especially considering the error handling when subprocesses are involved is not trivial, such that the current error handling code is actually broken and leads to dead-lock conditions, when, for example, curl is still waiting for the python side to read data, but the python side is not reading data anymore because an exception was thrown in the tar reading loop. --HG-- extra : rebase_source : 054c37cfaa68bf475b37545ebaa99144584b93d4 |
|
Mike Hommey | b83d215e99 |
Bug 1432390 - Remove explicit exception handling in docker.load_image(). r=dustin
The used pattern: except Exception: error = sys.exc_info()[0] finally: ... if error: raise error actually loses everything that is interesting about the original exception. Not catching the exception just makes it thrown up the stack, except when a different exception is thrown from the finally block, which is what that if error: raise error is attempting to do... except it doesn't throw the original exception, but its type only. --HG-- extra : rebase_source : 17601fcc90fcdfefd93c4267f3cd33425d5326fd |
|
Mike Hommey | 784400b0bb |
Bug 1432390 - Avoid creating a temporary file for generate_context_hash. r=dustin
Now that we don't need to read the contents of a file to hash the contents of a docker image context, we can avoid creating a file in generate_context_hash. --HG-- extra : rebase_source : 98abe9bfdc48b612a3d251296991d0f769b449fd |
|
Mike Hommey | d936a6c5d2 |
Bug 1432390 - Hash the contents of the docker image context as it is created. r=dustin
This will allow us, down the line, to avoid creating a file at all in some cases. --HG-- extra : rebase_source : e4ea40341836cf24aa6d61c905b2efa660ee13f2 |
|
Mike Hommey | 4d0b7a7cab |
Bug 1432390 - Vendor requests-unixsocket. r=dustin
--HG-- extra : rebase_source : e0e3e0b5baf68aa4e441b81bfda83b17f895a4b1 |
|
Brian Grinstead | 9f4fa59cb7 |
Bug 1424095 - Force off flexbox emulation in the Browser Toolbox;r=jryans
While this feature is still being worked on, it's nice if the BT is rendered properly (there are currently issues with iframe sizing that make it hard to use the inspector). MozReview-Commit-ID: AULRq2N6Miv --HG-- extra : rebase_source : b7596abe13bb8c0f5a3ea488dc84c8736614885d |
|
Brian Grinstead | a35b976252 |
Bug 1424095 - Use display: block on iframes in XUL flexbox emulation mode;r=Gijs
With emulated flex display we wrap inline-level children into anonymous wrapper-blocks, and those wrapper blocks serve as the flex items. Using display: block and then resetting the hardcoded width/height does the trick. MozReview-Commit-ID: Grh1KsSmngP --HG-- extra : rebase_source : d0792b19387e50d7c70a50a741c060655d4a3669 |
|
Brian Grinstead | 7748a17ff2 |
Bug 1424095 - Tweak frontend CSS to play nicely in XUL flexbox emulation mode;r=Gijs
There are still known issues with the browser chrome when emulating, but this changeset is done in service of getting the UI to be close enough to start running Talos tests against it in Bug 1425330. MozReview-Commit-ID: B0w1aOmi4FJ --HG-- extra : rebase_source : e8b13f9203f0e368fb6f36bc9d2059fff7061b54 |
|
CYBAI | aba250b512 |
servo: Merge #19868 - Use specific assertions (from CYBAI:specific-assertion); r=emilio
Similar to #19865 r? jdm Note: Should I squash all the commits into one commit? --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because it should not break anything Source-Repo: https://github.com/servo/servo Source-Revision: c9ba16f9fbdf7f43cb19feedfaaa68c85bbcbe3b --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : f1c9a3696d90aab078d6e2b96318d1ccc8a28507 |
|
Ralph Giles | dc8c14e96a |
Bug 1433185 - Require Rust 1.23. r=nalexander
It's been more than two weeks since the 1.23 stable release, and we're making official builds with that toolchain release, so begin requiring that version so new language features can be used in development. MozReview-Commit-ID: E6WuP41ceTn --HG-- extra : rebase_source : 75850dd9edbf8e3f9beab394e4af7fad76ce3b17 |
|
Kartikaya Gupta | 87625450be |
Bug 1432541 - Add a reftest. r=mstange
This is a minimal version of the recaptcha popup that was one of the ways to observe the bug. MozReview-Commit-ID: JUhw9IkH0Tm --HG-- extra : rebase_source : a7f15ead1a919f4d66a72b9732c31b1bcfe41678 |
|
Kartikaya Gupta | 69c3c5a3be |
Bug 1432541 - Don't reuse clips across a stacking context with a nonzero position. r=mstange
In bug 1426386, I made it so that in some cases, part or all of the transform component of a stacking context got moved to the bounds top-left. However I neglected to update the ScrollingLayersHelper, which was relying on the transform to know if it could reuse clips across a stacking context boundary. It now also needs to check the bounds top-left as a result of the aforementioned change. MozReview-Commit-ID: 7mDRSYqZ8bF --HG-- extra : rebase_source : bdf433c772853d39e29c0288776db7a88129ac2f |
|
arthur.iakab | 39d63fc827 | Merge mozilla-central to autoland | |
arthur.iakab | 94ab855658 | Merge inbound to mozilla-central. a=merge | |
arthur.iakab | fbf012afc0 | Merge autoland to mozilla-central. a=merge | |
Josh Matthews | 21f1825514 |
servo: Merge #19865 - Use more specific assertions for http tests (from servo:jdm-patch-6); r=KiChjang
Source-Repo: https://github.com/servo/servo Source-Revision: fc3b1789318afc8f10e160d40b592234fbdb5cf4 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 5c47ddfeaf1a61729a13a8b5a83dc3e264385161 |
|
Dorel Luca | 35276d96fb |
Backed out changeset e9407b04cde1 (bug 1433144) for build bustage on test_orphan_file_patterns on a CLOSED TREE
--HG-- rename : testing/web-platform/tests/interfaces/WebCryptoAPI.idl => testing/web-platform/tests/WebCryptoAPI/WebCryptoAPI.idl rename : testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.https.worker.js => testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.worker.js rename : testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.https.worker.js => testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.worker.js rename : testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/hkdf.https.worker.js => testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/hkdf.worker.js rename : testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/pbkdf2.https.worker.js => testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/pbkdf2.worker.js rename : testing/web-platform/tests/WebCryptoAPI/digest/digest.https.worker.js => testing/web-platform/tests/WebCryptoAPI/digest/digest.worker.js rename : testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_cbc.https.worker.js => testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_cbc.worker.js rename : testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_ctr.https.worker.js => testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_ctr.worker.js rename : testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_gcm.https.worker.js => testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_gcm.worker.js rename : testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/rsa.https.worker.js => testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/rsa.worker.js rename : testing/web-platform/tests/WebCryptoAPI/import_export/ec_importKey.https.worker.js => testing/web-platform/tests/WebCryptoAPI/import_export/ec_importKey.worker.js rename : testing/web-platform/tests/WebCryptoAPI/import_export/rsa_importKey.https.worker.js => testing/web-platform/tests/WebCryptoAPI/import_export/rsa_importKey.worker.js rename : testing/web-platform/tests/WebCryptoAPI/import_export/symmetric_importKey.https.worker.js => testing/web-platform/tests/WebCryptoAPI/import_export/symmetric_importKey.worker.js rename : testing/web-platform/tests/WebCryptoAPI/sign_verify/ecdsa.https.worker.js => testing/web-platform/tests/WebCryptoAPI/sign_verify/ecdsa.worker.js rename : testing/web-platform/tests/WebCryptoAPI/sign_verify/hmac.https.worker.js => testing/web-platform/tests/WebCryptoAPI/sign_verify/hmac.worker.js rename : testing/web-platform/tests/WebCryptoAPI/sign_verify/rsa_pkcs.https.worker.js => testing/web-platform/tests/WebCryptoAPI/sign_verify/rsa_pkcs.worker.js rename : testing/web-platform/tests/WebCryptoAPI/sign_verify/rsa_pss.https.worker.js => testing/web-platform/tests/WebCryptoAPI/sign_verify/rsa_pss.worker.js rename : testing/web-platform/tests/WebCryptoAPI/wrapKey_unwrapKey/wrapKey_unwrapKey.https.worker.js => testing/web-platform/tests/WebCryptoAPI/wrapKey_unwrapKey/wrapKey_unwrapKey.worker.js rename : testing/web-platform/tests/xhr/FormData-append.html => testing/web-platform/tests/XMLHttpRequest/FormData-append.html rename : testing/web-platform/tests/xhr/OWNERS => testing/web-platform/tests/XMLHttpRequest/OWNERS rename : testing/web-platform/tests/xhr/README.md => testing/web-platform/tests/XMLHttpRequest/README.md rename : testing/web-platform/tests/xhr/XMLHttpRequest-withCredentials.any.js => testing/web-platform/tests/XMLHttpRequest/XMLHttpRequest-withCredentials.any.js rename : testing/web-platform/tests/xhr/abort-after-receive.htm => testing/web-platform/tests/XMLHttpRequest/abort-after-receive.htm rename : testing/web-platform/tests/xhr/abort-after-send.htm => testing/web-platform/tests/XMLHttpRequest/abort-after-send.htm rename : testing/web-platform/tests/xhr/abort-after-stop.htm => testing/web-platform/tests/XMLHttpRequest/abort-after-stop.htm rename : testing/web-platform/tests/xhr/abort-after-timeout.htm => testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm rename : testing/web-platform/tests/xhr/abort-during-done.htm => testing/web-platform/tests/XMLHttpRequest/abort-during-done.htm rename : testing/web-platform/tests/xhr/abort-during-headers-received.htm => testing/web-platform/tests/XMLHttpRequest/abort-during-headers-received.htm rename : testing/web-platform/tests/xhr/abort-during-loading.htm => testing/web-platform/tests/XMLHttpRequest/abort-during-loading.htm rename : testing/web-platform/tests/xhr/abort-during-open.htm => testing/web-platform/tests/XMLHttpRequest/abort-during-open.htm rename : testing/web-platform/tests/xhr/abort-during-open.js => testing/web-platform/tests/XMLHttpRequest/abort-during-open.js rename : testing/web-platform/tests/xhr/abort-during-open.worker.js => testing/web-platform/tests/XMLHttpRequest/abort-during-open.worker.js rename : testing/web-platform/tests/xhr/abort-during-unsent.htm => testing/web-platform/tests/XMLHttpRequest/abort-during-unsent.htm rename : testing/web-platform/tests/xhr/abort-during-upload.htm => testing/web-platform/tests/XMLHttpRequest/abort-during-upload.htm rename : testing/web-platform/tests/xhr/abort-event-abort.htm => testing/web-platform/tests/XMLHttpRequest/abort-event-abort.htm rename : testing/web-platform/tests/xhr/abort-event-listeners.htm => testing/web-platform/tests/XMLHttpRequest/abort-event-listeners.htm rename : testing/web-platform/tests/xhr/abort-event-loadend.htm => testing/web-platform/tests/XMLHttpRequest/abort-event-loadend.htm rename : testing/web-platform/tests/xhr/abort-event-order.htm => testing/web-platform/tests/XMLHttpRequest/abort-event-order.htm rename : testing/web-platform/tests/xhr/abort-upload-event-abort.htm => testing/web-platform/tests/XMLHttpRequest/abort-upload-event-abort.htm rename : testing/web-platform/tests/xhr/abort-upload-event-loadend.htm => testing/web-platform/tests/XMLHttpRequest/abort-upload-event-loadend.htm rename : testing/web-platform/tests/xhr/anonymous-mode-unsupported.htm => testing/web-platform/tests/XMLHttpRequest/anonymous-mode-unsupported.htm rename : testing/web-platform/tests/xhr/data-uri.htm => testing/web-platform/tests/XMLHttpRequest/data-uri.htm rename : testing/web-platform/tests/xhr/event-abort.htm => testing/web-platform/tests/XMLHttpRequest/event-abort.htm rename : testing/web-platform/tests/xhr/event-error-order.sub.html => testing/web-platform/tests/XMLHttpRequest/event-error-order.sub.html rename : testing/web-platform/tests/xhr/event-error.sub.html => testing/web-platform/tests/XMLHttpRequest/event-error.sub.html rename : testing/web-platform/tests/xhr/event-load.htm => testing/web-platform/tests/XMLHttpRequest/event-load.htm rename : testing/web-platform/tests/xhr/event-loadend.htm => testing/web-platform/tests/XMLHttpRequest/event-loadend.htm rename : testing/web-platform/tests/xhr/event-loadstart-upload.htm => testing/web-platform/tests/XMLHttpRequest/event-loadstart-upload.htm rename : testing/web-platform/tests/xhr/event-loadstart.htm => testing/web-platform/tests/XMLHttpRequest/event-loadstart.htm rename : testing/web-platform/tests/xhr/event-progress.htm => testing/web-platform/tests/XMLHttpRequest/event-progress.htm rename : testing/web-platform/tests/xhr/event-readystate-sync-open.htm => testing/web-platform/tests/XMLHttpRequest/event-readystate-sync-open.htm rename : testing/web-platform/tests/xhr/event-readystatechange-loaded.htm => testing/web-platform/tests/XMLHttpRequest/event-readystatechange-loaded.htm rename : testing/web-platform/tests/xhr/event-timeout-order.htm => testing/web-platform/tests/XMLHttpRequest/event-timeout-order.htm rename : testing/web-platform/tests/xhr/event-timeout.htm => testing/web-platform/tests/XMLHttpRequest/event-timeout.htm rename : testing/web-platform/tests/xhr/event-upload-progress.htm => testing/web-platform/tests/XMLHttpRequest/event-upload-progress.htm rename : testing/web-platform/tests/xhr/firing-events-http-content-length.html => testing/web-platform/tests/XMLHttpRequest/firing-events-http-content-length.html rename : testing/web-platform/tests/xhr/firing-events-http-no-content-length.html => testing/web-platform/tests/XMLHttpRequest/firing-events-http-no-content-length.html rename : testing/web-platform/tests/xhr/folder.txt => testing/web-platform/tests/XMLHttpRequest/folder.txt rename : testing/web-platform/tests/xhr/formdata-blob.htm => testing/web-platform/tests/XMLHttpRequest/formdata-blob.htm rename : testing/web-platform/tests/xhr/formdata-delete.htm => testing/web-platform/tests/XMLHttpRequest/formdata-delete.htm rename : testing/web-platform/tests/xhr/formdata-foreach.html => testing/web-platform/tests/XMLHttpRequest/formdata-foreach.html rename : testing/web-platform/tests/xhr/formdata-get.htm => testing/web-platform/tests/XMLHttpRequest/formdata-get.htm rename : testing/web-platform/tests/xhr/formdata-has.htm => testing/web-platform/tests/XMLHttpRequest/formdata-has.htm rename : testing/web-platform/tests/xhr/formdata-set.htm => testing/web-platform/tests/XMLHttpRequest/formdata-set.htm rename : testing/web-platform/tests/xhr/formdata.htm => testing/web-platform/tests/XMLHttpRequest/formdata.htm rename : testing/web-platform/tests/xhr/getallresponseheaders-cookies.htm => testing/web-platform/tests/XMLHttpRequest/getallresponseheaders-cookies.htm rename : testing/web-platform/tests/xhr/getallresponseheaders-status.htm => testing/web-platform/tests/XMLHttpRequest/getallresponseheaders-status.htm rename : testing/web-platform/tests/xhr/getallresponseheaders.htm => testing/web-platform/tests/XMLHttpRequest/getallresponseheaders.htm rename : testing/web-platform/tests/xhr/getresponseheader-case-insensitive.htm => testing/web-platform/tests/XMLHttpRequest/getresponseheader-case-insensitive.htm rename : testing/web-platform/tests/xhr/getresponseheader-chunked-trailer.htm => testing/web-platform/tests/XMLHttpRequest/getresponseheader-chunked-trailer.htm rename : testing/web-platform/tests/xhr/getresponseheader-cookies-and-more.htm => testing/web-platform/tests/XMLHttpRequest/getresponseheader-cookies-and-more.htm rename : testing/web-platform/tests/xhr/getresponseheader-error-state.htm => testing/web-platform/tests/XMLHttpRequest/getresponseheader-error-state.htm rename : testing/web-platform/tests/xhr/getresponseheader-server-date.htm => testing/web-platform/tests/XMLHttpRequest/getresponseheader-server-date.htm rename : testing/web-platform/tests/xhr/getresponseheader-special-characters.htm => testing/web-platform/tests/XMLHttpRequest/getresponseheader-special-characters.htm rename : testing/web-platform/tests/xhr/getresponseheader-unsent-opened-state.htm => testing/web-platform/tests/XMLHttpRequest/getresponseheader-unsent-opened-state.htm rename : testing/web-platform/tests/xhr/headers-normalize-response.htm => testing/web-platform/tests/XMLHttpRequest/headers-normalize-response.htm rename : testing/web-platform/tests/xhr/historical.html => testing/web-platform/tests/XMLHttpRequest/historical.html rename : testing/web-platform/tests/xhr/loadstart-and-state.html => testing/web-platform/tests/XMLHttpRequest/loadstart-and-state.html rename : testing/web-platform/tests/xhr/no-utf16-json.htm => testing/web-platform/tests/XMLHttpRequest/no-utf16-json.htm rename : testing/web-platform/tests/xhr/open-after-abort.htm => testing/web-platform/tests/XMLHttpRequest/open-after-abort.htm rename : testing/web-platform/tests/xhr/open-after-setrequestheader.htm => testing/web-platform/tests/XMLHttpRequest/open-after-setrequestheader.htm rename : testing/web-platform/tests/xhr/open-during-abort-event.htm => testing/web-platform/tests/XMLHttpRequest/open-during-abort-event.htm rename : testing/web-platform/tests/xhr/open-during-abort-processing.htm => testing/web-platform/tests/XMLHttpRequest/open-during-abort-processing.htm rename : testing/web-platform/tests/xhr/open-during-abort.htm => testing/web-platform/tests/XMLHttpRequest/open-during-abort.htm rename : testing/web-platform/tests/xhr/open-method-bogus.htm => testing/web-platform/tests/XMLHttpRequest/open-method-bogus.htm rename : testing/web-platform/tests/xhr/open-method-case-insensitive.htm => testing/web-platform/tests/XMLHttpRequest/open-method-case-insensitive.htm rename : testing/web-platform/tests/xhr/open-method-case-sensitive.htm => testing/web-platform/tests/XMLHttpRequest/open-method-case-sensitive.htm rename : testing/web-platform/tests/xhr/open-method-insecure.htm => testing/web-platform/tests/XMLHttpRequest/open-method-insecure.htm rename : testing/web-platform/tests/xhr/open-method-responsetype-set-sync.htm => testing/web-platform/tests/XMLHttpRequest/open-method-responsetype-set-sync.htm rename : testing/web-platform/tests/xhr/open-open-send.htm => testing/web-platform/tests/XMLHttpRequest/open-open-send.htm rename : testing/web-platform/tests/xhr/open-open-sync-send.htm => testing/web-platform/tests/XMLHttpRequest/open-open-sync-send.htm rename : testing/web-platform/tests/xhr/open-referer.htm => testing/web-platform/tests/XMLHttpRequest/open-referer.htm rename : testing/web-platform/tests/xhr/open-send-during-abort.htm => testing/web-platform/tests/XMLHttpRequest/open-send-during-abort.htm rename : testing/web-platform/tests/xhr/open-send-open.htm => testing/web-platform/tests/XMLHttpRequest/open-send-open.htm rename : testing/web-platform/tests/xhr/open-sync-open-send.htm => testing/web-platform/tests/XMLHttpRequest/open-sync-open-send.htm rename : testing/web-platform/tests/xhr/open-url-about-blank-window.htm => testing/web-platform/tests/XMLHttpRequest/open-url-about-blank-window.htm rename : testing/web-platform/tests/xhr/open-url-base-inserted-after-open.htm => testing/web-platform/tests/XMLHttpRequest/open-url-base-inserted-after-open.htm rename : testing/web-platform/tests/xhr/open-url-base-inserted.htm => testing/web-platform/tests/XMLHttpRequest/open-url-base-inserted.htm rename : testing/web-platform/tests/xhr/open-url-base.htm => testing/web-platform/tests/XMLHttpRequest/open-url-base.htm rename : testing/web-platform/tests/xhr/open-url-encoding.htm => testing/web-platform/tests/XMLHttpRequest/open-url-encoding.htm rename : testing/web-platform/tests/xhr/open-url-javascript-window-2.htm => testing/web-platform/tests/XMLHttpRequest/open-url-javascript-window-2.htm rename : testing/web-platform/tests/xhr/open-url-javascript-window.htm => testing/web-platform/tests/XMLHttpRequest/open-url-javascript-window.htm rename : testing/web-platform/tests/xhr/open-url-multi-window-2.htm => testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-2.htm rename : testing/web-platform/tests/xhr/open-url-multi-window-3.htm => testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-3.htm rename : testing/web-platform/tests/xhr/open-url-multi-window-4.htm => testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-4.htm rename : testing/web-platform/tests/xhr/open-url-multi-window-5.htm => testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-5.htm rename : testing/web-platform/tests/xhr/open-url-multi-window-6.htm => testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-6.htm rename : testing/web-platform/tests/xhr/open-url-multi-window.htm => testing/web-platform/tests/XMLHttpRequest/open-url-multi-window.htm rename : testing/web-platform/tests/xhr/open-url-redirected-worker-origin.htm => testing/web-platform/tests/XMLHttpRequest/open-url-redirected-worker-origin.htm rename : testing/web-platform/tests/xhr/open-url-worker-origin.htm => testing/web-platform/tests/XMLHttpRequest/open-url-worker-origin.htm rename : testing/web-platform/tests/xhr/open-url-worker-simple.htm => testing/web-platform/tests/XMLHttpRequest/open-url-worker-simple.htm rename : testing/web-platform/tests/xhr/open-user-password-non-same-origin.htm => testing/web-platform/tests/XMLHttpRequest/open-user-password-non-same-origin.htm rename : testing/web-platform/tests/xhr/overridemimetype-blob.html => testing/web-platform/tests/XMLHttpRequest/overridemimetype-blob.html rename : testing/web-platform/tests/xhr/overridemimetype-done-state.htm => testing/web-platform/tests/XMLHttpRequest/overridemimetype-done-state.htm rename : testing/web-platform/tests/xhr/overridemimetype-headers-received-state-force-shiftjis.htm => testing/web-platform/tests/XMLHttpRequest/overridemimetype-headers-received-state-force-shiftjis.htm rename : testing/web-platform/tests/xhr/overridemimetype-invalid-mime-type.htm => testing/web-platform/tests/XMLHttpRequest/overridemimetype-invalid-mime-type.htm rename : testing/web-platform/tests/xhr/overridemimetype-loading-state.htm => testing/web-platform/tests/XMLHttpRequest/overridemimetype-loading-state.htm rename : testing/web-platform/tests/xhr/overridemimetype-open-state-force-utf-8.htm => testing/web-platform/tests/XMLHttpRequest/overridemimetype-open-state-force-utf-8.htm rename : testing/web-platform/tests/xhr/overridemimetype-open-state-force-xml.htm => testing/web-platform/tests/XMLHttpRequest/overridemimetype-open-state-force-xml.htm rename : testing/web-platform/tests/xhr/overridemimetype-unsent-state-force-shiftjis.htm => testing/web-platform/tests/XMLHttpRequest/overridemimetype-unsent-state-force-shiftjis.htm rename : testing/web-platform/tests/xhr/preserve-ua-header-on-redirect.htm => testing/web-platform/tests/XMLHttpRequest/preserve-ua-header-on-redirect.htm rename : testing/web-platform/tests/xhr/progress-events-response-data-gzip.htm => testing/web-platform/tests/XMLHttpRequest/progress-events-response-data-gzip.htm rename : testing/web-platform/tests/xhr/progressevent-constructor.html => testing/web-platform/tests/XMLHttpRequest/progressevent-constructor.html rename : testing/web-platform/tests/xhr/progressevent-interface.html => testing/web-platform/tests/XMLHttpRequest/progressevent-interface.html rename : testing/web-platform/tests/xhr/resources/accept-language.py => testing/web-platform/tests/XMLHttpRequest/resources/accept-language.py rename : testing/web-platform/tests/xhr/resources/accept.py => testing/web-platform/tests/XMLHttpRequest/resources/accept.py rename : testing/web-platform/tests/xhr/resources/access-control-allow-lists.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-allow-lists.py rename : testing/web-platform/tests/xhr/resources/access-control-allow-with-body.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-allow-with-body.py rename : testing/web-platform/tests/xhr/resources/access-control-auth-basic.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-auth-basic.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-allow-no-credentials.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-allow-no-credentials.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-allow-star.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-allow-star.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-allow.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-allow.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-cors-safelisted-request-headers.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-cors-safelisted-request-headers.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-denied.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-denied.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-options-not-supported.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-options-not-supported.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-preflight-cache-invalidation.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-preflight-cache-invalidation.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-preflight-cache-timeout.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-preflight-cache-timeout.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-preflight-cache.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-preflight-cache.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-put-allow.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-put-allow.py rename : testing/web-platform/tests/xhr/resources/access-control-basic-whitelist-response-headers.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-whitelist-response-headers.py rename : testing/web-platform/tests/xhr/resources/access-control-cookie.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-cookie.py rename : testing/web-platform/tests/xhr/resources/access-control-origin-header.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-origin-header.py rename : testing/web-platform/tests/xhr/resources/access-control-preflight-denied.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-denied.py rename : testing/web-platform/tests/xhr/resources/access-control-preflight-request-header-lowercase.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-header-lowercase.py rename : testing/web-platform/tests/xhr/resources/access-control-preflight-request-header-sorted.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-header-sorted.py rename : testing/web-platform/tests/xhr/resources/access-control-preflight-request-headers-origin.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-headers-origin.py rename : testing/web-platform/tests/xhr/resources/access-control-preflight-request-invalid-status.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-invalid-status.py rename : testing/web-platform/tests/xhr/resources/access-control-preflight-request-must-not-contain-cookie.py => testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-must-not-contain-cookie.py rename : testing/web-platform/tests/xhr/resources/access-control-sandboxed-iframe.html => testing/web-platform/tests/XMLHttpRequest/resources/access-control-sandboxed-iframe.html rename : testing/web-platform/tests/xhr/resources/auth1/auth.py => testing/web-platform/tests/XMLHttpRequest/resources/auth1/auth.py rename : testing/web-platform/tests/xhr/resources/auth2/auth.py => testing/web-platform/tests/XMLHttpRequest/resources/auth2/auth.py rename : testing/web-platform/tests/xhr/resources/auth2/corsenabled.py => testing/web-platform/tests/XMLHttpRequest/resources/auth2/corsenabled.py rename : testing/web-platform/tests/xhr/resources/auth3/auth.py => testing/web-platform/tests/XMLHttpRequest/resources/auth3/auth.py rename : testing/web-platform/tests/xhr/resources/auth4/auth.py => testing/web-platform/tests/XMLHttpRequest/resources/auth4/auth.py rename : testing/web-platform/tests/xhr/resources/auth5/auth.py => testing/web-platform/tests/XMLHttpRequest/resources/auth5/auth.py rename : testing/web-platform/tests/xhr/resources/auth6/auth.py => testing/web-platform/tests/XMLHttpRequest/resources/auth6/auth.py rename : testing/web-platform/tests/xhr/resources/auth7/corsenabled.py => testing/web-platform/tests/XMLHttpRequest/resources/auth7/corsenabled.py rename : testing/web-platform/tests/xhr/resources/auth8/corsenabled-no-authorize.py => testing/web-platform/tests/XMLHttpRequest/resources/auth8/corsenabled-no-authorize.py rename : testing/web-platform/tests/xhr/resources/auth9/auth.py => testing/web-platform/tests/XMLHttpRequest/resources/auth9/auth.py rename : testing/web-platform/tests/xhr/resources/authentication.py => testing/web-platform/tests/XMLHttpRequest/resources/authentication.py rename : testing/web-platform/tests/xhr/resources/base.xml => testing/web-platform/tests/XMLHttpRequest/resources/base.xml rename : testing/web-platform/tests/xhr/resources/chunked.py => testing/web-platform/tests/XMLHttpRequest/resources/chunked.py rename : testing/web-platform/tests/xhr/resources/conditional.py => testing/web-platform/tests/XMLHttpRequest/resources/conditional.py rename : testing/web-platform/tests/xhr/resources/content.py => testing/web-platform/tests/XMLHttpRequest/resources/content.py rename : testing/web-platform/tests/xhr/resources/corsenabled.py => testing/web-platform/tests/XMLHttpRequest/resources/corsenabled.py rename : testing/web-platform/tests/xhr/resources/delay.py => testing/web-platform/tests/XMLHttpRequest/resources/delay.py rename : testing/web-platform/tests/xhr/resources/echo-headers.py => testing/web-platform/tests/XMLHttpRequest/resources/echo-headers.py rename : testing/web-platform/tests/xhr/resources/echo-method.py => testing/web-platform/tests/XMLHttpRequest/resources/echo-method.py rename : testing/web-platform/tests/xhr/resources/empty-div-utf8-html.py => testing/web-platform/tests/XMLHttpRequest/resources/empty-div-utf8-html.py rename : testing/web-platform/tests/xhr/resources/folder.txt => testing/web-platform/tests/XMLHttpRequest/resources/folder.txt rename : testing/web-platform/tests/xhr/resources/form.py => testing/web-platform/tests/XMLHttpRequest/resources/form.py rename : testing/web-platform/tests/xhr/resources/gzip.py => testing/web-platform/tests/XMLHttpRequest/resources/gzip.py rename : testing/web-platform/tests/xhr/resources/header-content-length.asis => testing/web-platform/tests/XMLHttpRequest/resources/header-content-length.asis rename : testing/web-platform/tests/xhr/resources/headers-basic.asis => testing/web-platform/tests/XMLHttpRequest/resources/headers-basic.asis rename : testing/web-platform/tests/xhr/resources/headers.asis => testing/web-platform/tests/XMLHttpRequest/resources/headers.asis rename : testing/web-platform/tests/xhr/resources/headers.py => testing/web-platform/tests/XMLHttpRequest/resources/headers.py rename : testing/web-platform/tests/xhr/resources/image.gif => testing/web-platform/tests/XMLHttpRequest/resources/image.gif rename : testing/web-platform/tests/xhr/resources/img-utf8-html.py => testing/web-platform/tests/XMLHttpRequest/resources/img-utf8-html.py rename : testing/web-platform/tests/xhr/resources/img.jpg => testing/web-platform/tests/XMLHttpRequest/resources/img.jpg rename : testing/web-platform/tests/xhr/resources/infinite-redirects.py => testing/web-platform/tests/XMLHttpRequest/resources/infinite-redirects.py rename : testing/web-platform/tests/xhr/resources/init.htm => testing/web-platform/tests/XMLHttpRequest/resources/init.htm rename : testing/web-platform/tests/xhr/resources/inspect-headers.py => testing/web-platform/tests/XMLHttpRequest/resources/inspect-headers.py rename : testing/web-platform/tests/xhr/resources/invalid-utf8-html.py => testing/web-platform/tests/XMLHttpRequest/resources/invalid-utf8-html.py rename : testing/web-platform/tests/xhr/resources/last-modified.py => testing/web-platform/tests/XMLHttpRequest/resources/last-modified.py rename : testing/web-platform/tests/xhr/resources/no-custom-header-on-preflight.py => testing/web-platform/tests/XMLHttpRequest/resources/no-custom-header-on-preflight.py rename : testing/web-platform/tests/xhr/resources/nocors/folder.txt => testing/web-platform/tests/XMLHttpRequest/resources/nocors/folder.txt rename : testing/web-platform/tests/xhr/resources/parse-headers.py => testing/web-platform/tests/XMLHttpRequest/resources/parse-headers.py rename : testing/web-platform/tests/xhr/resources/pass.txt => testing/web-platform/tests/XMLHttpRequest/resources/pass.txt rename : testing/web-platform/tests/xhr/resources/redirect-cors.py => testing/web-platform/tests/XMLHttpRequest/resources/redirect-cors.py rename : testing/web-platform/tests/xhr/resources/redirect.py => testing/web-platform/tests/XMLHttpRequest/resources/redirect.py rename : testing/web-platform/tests/xhr/resources/requri.py => testing/web-platform/tests/XMLHttpRequest/resources/requri.py rename : testing/web-platform/tests/xhr/resources/reset-token.py => testing/web-platform/tests/XMLHttpRequest/resources/reset-token.py rename : testing/web-platform/tests/xhr/resources/responseType-document-in-worker.js => testing/web-platform/tests/XMLHttpRequest/resources/responseType-document-in-worker.js rename : testing/web-platform/tests/xhr/resources/responseXML-unavailable-in-worker.js => testing/web-platform/tests/XMLHttpRequest/resources/responseXML-unavailable-in-worker.js rename : testing/web-platform/tests/xhr/resources/send-after-setting-document-domain-window-1.htm => testing/web-platform/tests/XMLHttpRequest/resources/send-after-setting-document-domain-window-1.htm rename : testing/web-platform/tests/xhr/resources/send-after-setting-document-domain-window-2.htm => testing/web-platform/tests/XMLHttpRequest/resources/send-after-setting-document-domain-window-2.htm rename : testing/web-platform/tests/xhr/resources/send-after-setting-document-domain-window-helper.js => testing/web-platform/tests/XMLHttpRequest/resources/send-after-setting-document-domain-window-helper.js rename : testing/web-platform/tests/xhr/resources/shift-jis-html.py => testing/web-platform/tests/XMLHttpRequest/resources/shift-jis-html.py rename : testing/web-platform/tests/xhr/resources/status.py => testing/web-platform/tests/XMLHttpRequest/resources/status.py rename : testing/web-platform/tests/xhr/resources/trickle.py => testing/web-platform/tests/XMLHttpRequest/resources/trickle.py rename : testing/web-platform/tests/xhr/resources/upload.py => testing/web-platform/tests/XMLHttpRequest/resources/upload.py rename : testing/web-platform/tests/xhr/resources/utf16-bom.json => testing/web-platform/tests/XMLHttpRequest/resources/utf16-bom.json rename : testing/web-platform/tests/xhr/resources/utf16.txt => testing/web-platform/tests/XMLHttpRequest/resources/utf16.txt rename : testing/web-platform/tests/xhr/resources/well-formed.xml => testing/web-platform/tests/XMLHttpRequest/resources/well-formed.xml rename : testing/web-platform/tests/xhr/resources/win-1252-html.py => testing/web-platform/tests/XMLHttpRequest/resources/win-1252-html.py rename : testing/web-platform/tests/xhr/resources/win-1252-xml.py => testing/web-platform/tests/XMLHttpRequest/resources/win-1252-xml.py rename : testing/web-platform/tests/xhr/resources/workerxhr-origin-referrer.js => testing/web-platform/tests/XMLHttpRequest/resources/workerxhr-origin-referrer.js rename : testing/web-platform/tests/xhr/resources/workerxhr-simple.js => testing/web-platform/tests/XMLHttpRequest/resources/workerxhr-simple.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-event-order.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-event-order.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-aborted.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-aborted.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-abortedonmain.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-abortedonmain.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-overrides.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-overrides.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-overridesexpires.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-overridesexpires.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-runner.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-runner.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-simple.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-simple.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-synconmain.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-synconmain.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-synconworker.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-synconworker.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-twice.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-twice.js rename : testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout.js => testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout.js rename : testing/web-platform/tests/xhr/resources/zlib.py => testing/web-platform/tests/XMLHttpRequest/resources/zlib.py rename : testing/web-platform/tests/xhr/response-data-arraybuffer.htm => testing/web-platform/tests/XMLHttpRequest/response-data-arraybuffer.htm rename : testing/web-platform/tests/xhr/response-data-blob.htm => testing/web-platform/tests/XMLHttpRequest/response-data-blob.htm rename : testing/web-platform/tests/xhr/response-data-deflate.htm => testing/web-platform/tests/XMLHttpRequest/response-data-deflate.htm rename : testing/web-platform/tests/xhr/response-data-gzip.htm => testing/web-platform/tests/XMLHttpRequest/response-data-gzip.htm rename : testing/web-platform/tests/xhr/response-data-progress.htm => testing/web-platform/tests/XMLHttpRequest/response-data-progress.htm rename : testing/web-platform/tests/xhr/response-invalid-responsetype.htm => testing/web-platform/tests/XMLHttpRequest/response-invalid-responsetype.htm rename : testing/web-platform/tests/xhr/response-json.htm => testing/web-platform/tests/XMLHttpRequest/response-json.htm rename : testing/web-platform/tests/xhr/response-method.htm => testing/web-platform/tests/XMLHttpRequest/response-method.htm rename : testing/web-platform/tests/xhr/responseText-status.html => testing/web-platform/tests/XMLHttpRequest/responseText-status.html rename : testing/web-platform/tests/xhr/responseType-document-in-worker.html => testing/web-platform/tests/XMLHttpRequest/responseType-document-in-worker.html rename : testing/web-platform/tests/xhr/responseXML-unavailable-in-worker.html => testing/web-platform/tests/XMLHttpRequest/responseXML-unavailable-in-worker.html rename : testing/web-platform/tests/xhr/responsedocument-decoding.htm => testing/web-platform/tests/XMLHttpRequest/responsedocument-decoding.htm rename : testing/web-platform/tests/xhr/responsetext-decoding.htm => testing/web-platform/tests/XMLHttpRequest/responsetext-decoding.htm rename : testing/web-platform/tests/xhr/responsetype.html => testing/web-platform/tests/XMLHttpRequest/responsetype.html rename : testing/web-platform/tests/xhr/responseurl.html => testing/web-platform/tests/XMLHttpRequest/responseurl.html rename : testing/web-platform/tests/xhr/responsexml-basic.htm => testing/web-platform/tests/XMLHttpRequest/responsexml-basic.htm rename : testing/web-platform/tests/xhr/responsexml-document-properties.htm => testing/web-platform/tests/XMLHttpRequest/responsexml-document-properties.htm rename : testing/web-platform/tests/xhr/responsexml-get-twice.htm => testing/web-platform/tests/XMLHttpRequest/responsexml-get-twice.htm rename : testing/web-platform/tests/xhr/responsexml-media-type.htm => testing/web-platform/tests/XMLHttpRequest/responsexml-media-type.htm rename : testing/web-platform/tests/xhr/responsexml-non-document-types.htm => testing/web-platform/tests/XMLHttpRequest/responsexml-non-document-types.htm rename : testing/web-platform/tests/xhr/responsexml-non-well-formed.htm => testing/web-platform/tests/XMLHttpRequest/responsexml-non-well-formed.htm rename : testing/web-platform/tests/xhr/send-accept-language.htm => testing/web-platform/tests/XMLHttpRequest/send-accept-language.htm rename : testing/web-platform/tests/xhr/send-accept.htm => testing/web-platform/tests/XMLHttpRequest/send-accept.htm rename : testing/web-platform/tests/xhr/send-authentication-basic-cors-not-enabled.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-cors-not-enabled.htm rename : testing/web-platform/tests/xhr/send-authentication-basic-cors.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-cors.htm rename : testing/web-platform/tests/xhr/send-authentication-basic-repeat-no-args.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-repeat-no-args.htm rename : testing/web-platform/tests/xhr/send-authentication-basic-setrequestheader-and-arguments.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-setrequestheader-and-arguments.htm rename : testing/web-platform/tests/xhr/send-authentication-basic-setrequestheader-existing-session.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-setrequestheader-existing-session.htm rename : testing/web-platform/tests/xhr/send-authentication-basic-setrequestheader.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-setrequestheader.htm rename : testing/web-platform/tests/xhr/send-authentication-basic.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-basic.htm rename : testing/web-platform/tests/xhr/send-authentication-competing-names-passwords.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-competing-names-passwords.htm rename : testing/web-platform/tests/xhr/send-authentication-cors-basic-setrequestheader.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-cors-basic-setrequestheader.htm rename : testing/web-platform/tests/xhr/send-authentication-cors-setrequestheader-no-cred.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-cors-setrequestheader-no-cred.htm rename : testing/web-platform/tests/xhr/send-authentication-existing-session-manual.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-existing-session-manual.htm rename : testing/web-platform/tests/xhr/send-authentication-prompt-2-manual.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-prompt-2-manual.htm rename : testing/web-platform/tests/xhr/send-authentication-prompt-manual.htm => testing/web-platform/tests/XMLHttpRequest/send-authentication-prompt-manual.htm rename : testing/web-platform/tests/xhr/send-blob-with-no-mime-type.html => testing/web-platform/tests/XMLHttpRequest/send-blob-with-no-mime-type.html rename : testing/web-platform/tests/xhr/send-conditional-cors.htm => testing/web-platform/tests/XMLHttpRequest/send-conditional-cors.htm rename : testing/web-platform/tests/xhr/send-conditional.htm => testing/web-platform/tests/XMLHttpRequest/send-conditional.htm rename : testing/web-platform/tests/xhr/send-content-type-charset.htm => testing/web-platform/tests/XMLHttpRequest/send-content-type-charset.htm rename : testing/web-platform/tests/xhr/send-content-type-string.htm => testing/web-platform/tests/XMLHttpRequest/send-content-type-string.htm rename : testing/web-platform/tests/xhr/send-data-arraybuffer.htm => testing/web-platform/tests/XMLHttpRequest/send-data-arraybuffer.htm rename : testing/web-platform/tests/xhr/send-data-arraybufferview.htm => testing/web-platform/tests/XMLHttpRequest/send-data-arraybufferview.htm rename : testing/web-platform/tests/xhr/send-data-blob.htm => testing/web-platform/tests/XMLHttpRequest/send-data-blob.htm rename : testing/web-platform/tests/xhr/send-data-es-object.htm => testing/web-platform/tests/XMLHttpRequest/send-data-es-object.htm rename : testing/web-platform/tests/xhr/send-data-formdata.htm => testing/web-platform/tests/XMLHttpRequest/send-data-formdata.htm rename : testing/web-platform/tests/xhr/send-data-unexpected-tostring.htm => testing/web-platform/tests/XMLHttpRequest/send-data-unexpected-tostring.htm rename : testing/web-platform/tests/xhr/send-entity-body-basic.htm => testing/web-platform/tests/XMLHttpRequest/send-entity-body-basic.htm rename : testing/web-platform/tests/xhr/send-entity-body-document-bogus.htm => testing/web-platform/tests/XMLHttpRequest/send-entity-body-document-bogus.htm rename : testing/web-platform/tests/xhr/send-entity-body-document.htm => testing/web-platform/tests/XMLHttpRequest/send-entity-body-document.htm rename : testing/web-platform/tests/xhr/send-entity-body-empty.htm => testing/web-platform/tests/XMLHttpRequest/send-entity-body-empty.htm rename : testing/web-platform/tests/xhr/send-entity-body-get-head-async.htm => testing/web-platform/tests/XMLHttpRequest/send-entity-body-get-head-async.htm rename : testing/web-platform/tests/xhr/send-entity-body-get-head.htm => testing/web-platform/tests/XMLHttpRequest/send-entity-body-get-head.htm rename : testing/web-platform/tests/xhr/send-entity-body-none.htm => testing/web-platform/tests/XMLHttpRequest/send-entity-body-none.htm rename : testing/web-platform/tests/xhr/send-network-error-async-events.sub.htm => testing/web-platform/tests/XMLHttpRequest/send-network-error-async-events.sub.htm rename : testing/web-platform/tests/xhr/send-network-error-sync-events.sub.htm => testing/web-platform/tests/XMLHttpRequest/send-network-error-sync-events.sub.htm rename : testing/web-platform/tests/xhr/send-no-response-event-loadend.htm => testing/web-platform/tests/XMLHttpRequest/send-no-response-event-loadend.htm rename : testing/web-platform/tests/xhr/send-no-response-event-loadstart.htm => testing/web-platform/tests/XMLHttpRequest/send-no-response-event-loadstart.htm rename : testing/web-platform/tests/xhr/send-no-response-event-order.htm => testing/web-platform/tests/XMLHttpRequest/send-no-response-event-order.htm rename : testing/web-platform/tests/xhr/send-non-same-origin.htm => testing/web-platform/tests/XMLHttpRequest/send-non-same-origin.htm rename : testing/web-platform/tests/xhr/send-receive-utf16.htm => testing/web-platform/tests/XMLHttpRequest/send-receive-utf16.htm rename : testing/web-platform/tests/xhr/send-redirect-bogus-sync.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect-bogus-sync.htm rename : testing/web-platform/tests/xhr/send-redirect-bogus.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect-bogus.htm rename : testing/web-platform/tests/xhr/send-redirect-infinite-sync.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect-infinite-sync.htm rename : testing/web-platform/tests/xhr/send-redirect-infinite.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect-infinite.htm rename : testing/web-platform/tests/xhr/send-redirect-no-location.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect-no-location.htm rename : testing/web-platform/tests/xhr/send-redirect-post-upload.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect-post-upload.htm rename : testing/web-platform/tests/xhr/send-redirect-to-cors.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect-to-cors.htm rename : testing/web-platform/tests/xhr/send-redirect-to-non-cors.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect-to-non-cors.htm rename : testing/web-platform/tests/xhr/send-redirect.htm => testing/web-platform/tests/XMLHttpRequest/send-redirect.htm rename : testing/web-platform/tests/xhr/send-response-event-order.htm => testing/web-platform/tests/XMLHttpRequest/send-response-event-order.htm rename : testing/web-platform/tests/xhr/send-response-upload-event-loadend.htm => testing/web-platform/tests/XMLHttpRequest/send-response-upload-event-loadend.htm rename : testing/web-platform/tests/xhr/send-response-upload-event-loadstart.htm => testing/web-platform/tests/XMLHttpRequest/send-response-upload-event-loadstart.htm rename : testing/web-platform/tests/xhr/send-response-upload-event-progress.htm => testing/web-platform/tests/XMLHttpRequest/send-response-upload-event-progress.htm rename : testing/web-platform/tests/xhr/send-send.htm => testing/web-platform/tests/XMLHttpRequest/send-send.htm rename : testing/web-platform/tests/xhr/send-send.js => testing/web-platform/tests/XMLHttpRequest/send-send.js rename : testing/web-platform/tests/xhr/send-send.worker.js => testing/web-platform/tests/XMLHttpRequest/send-send.worker.js rename : testing/web-platform/tests/xhr/send-sync-blocks-async.htm => testing/web-platform/tests/XMLHttpRequest/send-sync-blocks-async.htm rename : testing/web-platform/tests/xhr/send-sync-no-response-event-load.htm => testing/web-platform/tests/XMLHttpRequest/send-sync-no-response-event-load.htm rename : testing/web-platform/tests/xhr/send-sync-no-response-event-loadend.htm => testing/web-platform/tests/XMLHttpRequest/send-sync-no-response-event-loadend.htm rename : testing/web-platform/tests/xhr/send-sync-no-response-event-order.htm => testing/web-platform/tests/XMLHttpRequest/send-sync-no-response-event-order.htm rename : testing/web-platform/tests/xhr/send-sync-response-event-order.htm => testing/web-platform/tests/XMLHttpRequest/send-sync-response-event-order.htm rename : testing/web-platform/tests/xhr/send-sync-timeout.htm => testing/web-platform/tests/XMLHttpRequest/send-sync-timeout.htm rename : testing/web-platform/tests/xhr/send-timeout-events.htm => testing/web-platform/tests/XMLHttpRequest/send-timeout-events.htm rename : testing/web-platform/tests/xhr/send-usp.any.js => testing/web-platform/tests/XMLHttpRequest/send-usp.any.js rename : testing/web-platform/tests/xhr/setrequestheader-after-send.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-after-send.htm rename : testing/web-platform/tests/xhr/setrequestheader-allow-empty-value.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-allow-empty-value.htm rename : testing/web-platform/tests/xhr/setrequestheader-allow-whitespace-in-value.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-allow-whitespace-in-value.htm rename : testing/web-platform/tests/xhr/setrequestheader-before-open.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-before-open.htm rename : testing/web-platform/tests/xhr/setrequestheader-bogus-name.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-bogus-name.htm rename : testing/web-platform/tests/xhr/setrequestheader-bogus-value.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-bogus-value.htm rename : testing/web-platform/tests/xhr/setrequestheader-case-insensitive.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-case-insensitive.htm rename : testing/web-platform/tests/xhr/setrequestheader-content-type.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-content-type.htm rename : testing/web-platform/tests/xhr/setrequestheader-header-allowed.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-header-allowed.htm rename : testing/web-platform/tests/xhr/setrequestheader-header-forbidden.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-header-forbidden.htm rename : testing/web-platform/tests/xhr/setrequestheader-open-setrequestheader.htm => testing/web-platform/tests/XMLHttpRequest/setrequestheader-open-setrequestheader.htm rename : testing/web-platform/tests/xhr/status-async.htm => testing/web-platform/tests/XMLHttpRequest/status-async.htm rename : testing/web-platform/tests/xhr/status-basic.htm => testing/web-platform/tests/XMLHttpRequest/status-basic.htm rename : testing/web-platform/tests/xhr/status-error.htm => testing/web-platform/tests/XMLHttpRequest/status-error.htm rename : testing/web-platform/tests/xhr/template-element.html => testing/web-platform/tests/XMLHttpRequest/template-element.html rename : testing/web-platform/tests/xhr/timeout-cors-async.htm => testing/web-platform/tests/XMLHttpRequest/timeout-cors-async.htm rename : testing/web-platform/tests/xhr/timeout-sync.htm => testing/web-platform/tests/XMLHttpRequest/timeout-sync.htm rename : testing/web-platform/tests/xhr/xmlhttprequest-basic.htm => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-basic.htm rename : testing/web-platform/tests/xhr/xmlhttprequest-eventtarget.htm => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-eventtarget.htm rename : testing/web-platform/tests/xhr/xmlhttprequest-network-error-sync.htm => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-network-error-sync.htm rename : testing/web-platform/tests/xhr/xmlhttprequest-network-error.htm => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-network-error.htm rename : testing/web-platform/tests/xhr/xmlhttprequest-sync-block-defer-scripts-subframe.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-block-defer-scripts-subframe.html rename : testing/web-platform/tests/xhr/xmlhttprequest-sync-block-defer-scripts.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-block-defer-scripts.html rename : testing/web-platform/tests/xhr/xmlhttprequest-sync-block-scripts.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-block-scripts.html rename : testing/web-platform/tests/xhr/xmlhttprequest-sync-not-hang-scriptloader-subframe.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-not-hang-scriptloader-subframe.html rename : testing/web-platform/tests/xhr/xmlhttprequest-sync-not-hang-scriptloader.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-not-hang-scriptloader.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-aborted.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-aborted.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-abortedonmain.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-abortedonmain.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-overrides.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-overrides.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-overridesexpires.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-overridesexpires.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-reused.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-reused.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-simple.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-simple.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-synconmain.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-synconmain.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-twice.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-twice.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-aborted.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-aborted.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-overrides.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-overrides.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-overridesexpires.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-overridesexpires.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-simple.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-simple.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-synconworker.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-synconworker.html rename : testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-twice.html => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-twice.html rename : testing/web-platform/tests/xhr/xmlhttprequest-unsent.htm => testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-unsent.htm rename : testing/web-platform/tests/quirks/active-and-hover-manual.html => testing/web-platform/tests/quirks-mode/active-and-hover-manual.html rename : testing/web-platform/tests/quirks/blocks-ignore-line-height.html => testing/web-platform/tests/quirks-mode/blocks-ignore-line-height.html rename : testing/web-platform/tests/quirks/classname-query-after-sibling-adoption.html => testing/web-platform/tests/quirks-mode/classname-query-after-sibling-adoption.html rename : testing/web-platform/tests/quirks/hashless-hex-color.html => testing/web-platform/tests/quirks-mode/hashless-hex-color.html rename : testing/web-platform/tests/quirks/historical/list-item-bullet-size-ref.html => testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size-ref.html rename : testing/web-platform/tests/quirks/historical/list-item-bullet-size.html => testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size.html rename : testing/web-platform/tests/quirks/line-height-calculation.html => testing/web-platform/tests/quirks-mode/line-height-calculation.html rename : testing/web-platform/tests/quirks/percentage-height-calculation.html => testing/web-platform/tests/quirks-mode/percentage-height-calculation.html rename : testing/web-platform/tests/quirks/supports.html => testing/web-platform/tests/quirks-mode/supports.html rename : testing/web-platform/tests/quirks/table-cell-nowrap-minimum-width-calculation.html => testing/web-platform/tests/quirks-mode/table-cell-nowrap-minimum-width-calculation.html rename : testing/web-platform/tests/quirks/table-cell-width-calculation.html => testing/web-platform/tests/quirks-mode/table-cell-width-calculation.html rename : testing/web-platform/tests/quirks/unitless-length.html => testing/web-platform/tests/quirks-mode/unitless-length.html |
|
Dorel Luca | 2d283eea75 |
Backed out changeset 926f53cc7341 (bug 1433144) for build bustage on test_orphan_file_patterns on a CLOSED TREE
--HG-- rename : testing/web-platform/meta/xhr/__dir__.ini => testing/web-platform/meta/XMLHttpRequest/__dir__.ini rename : testing/web-platform/meta/xhr/abort-after-stop.htm.ini => testing/web-platform/meta/XMLHttpRequest/abort-after-stop.htm.ini rename : testing/web-platform/meta/xhr/access-control-basic-cors-safelisted-request-headers.htm.ini => testing/web-platform/meta/XMLHttpRequest/access-control-basic-cors-safelisted-request-headers.htm.ini rename : testing/web-platform/meta/xhr/access-control-preflight-credential-async.htm.ini => testing/web-platform/meta/XMLHttpRequest/access-control-preflight-credential-async.htm.ini rename : testing/web-platform/meta/xhr/access-control-preflight-credential-sync.htm.ini => testing/web-platform/meta/XMLHttpRequest/access-control-preflight-credential-sync.htm.ini rename : testing/web-platform/meta/xhr/data-uri.htm.ini => testing/web-platform/meta/XMLHttpRequest/data-uri.htm.ini rename : testing/web-platform/meta/xhr/event-upload-progress-crossorigin.htm.ini => testing/web-platform/meta/XMLHttpRequest/event-upload-progress-crossorigin.htm.ini rename : testing/web-platform/meta/xhr/historical.html.ini => testing/web-platform/meta/XMLHttpRequest/historical.html.ini rename : testing/web-platform/meta/xhr/open-during-abort-processing.htm.ini => testing/web-platform/meta/XMLHttpRequest/open-during-abort-processing.htm.ini rename : testing/web-platform/meta/xhr/open-url-multi-window-4.htm.ini => testing/web-platform/meta/XMLHttpRequest/open-url-multi-window-4.htm.ini rename : testing/web-platform/meta/xhr/open-url-multi-window-6.htm.ini => testing/web-platform/meta/XMLHttpRequest/open-url-multi-window-6.htm.ini rename : testing/web-platform/meta/xhr/overridemimetype-blob.html.ini => testing/web-platform/meta/XMLHttpRequest/overridemimetype-blob.html.ini rename : testing/web-platform/meta/xhr/responsetext-decoding.htm.ini => testing/web-platform/meta/XMLHttpRequest/responsetext-decoding.htm.ini rename : testing/web-platform/meta/xhr/responsexml-document-properties.htm.ini => testing/web-platform/meta/XMLHttpRequest/responsexml-document-properties.htm.ini rename : testing/web-platform/meta/xhr/send-authentication-basic.htm.ini => testing/web-platform/meta/XMLHttpRequest/send-authentication-basic.htm.ini rename : testing/web-platform/meta/xhr/send-receive-utf16.htm.ini => testing/web-platform/meta/XMLHttpRequest/send-receive-utf16.htm.ini rename : testing/web-platform/meta/xhr/send-redirect-to-cors.htm.ini => testing/web-platform/meta/XMLHttpRequest/send-redirect-to-cors.htm.ini rename : testing/web-platform/meta/xhr/send-response-event-order.htm.ini => testing/web-platform/meta/XMLHttpRequest/send-response-event-order.htm.ini rename : testing/web-platform/meta/xhr/send-response-upload-event-progress.htm.ini => testing/web-platform/meta/XMLHttpRequest/send-response-upload-event-progress.htm.ini rename : testing/web-platform/meta/xhr/send-sync-blocks-async.htm.ini => testing/web-platform/meta/XMLHttpRequest/send-sync-blocks-async.htm.ini rename : testing/web-platform/meta/xhr/setrequestheader-allow-empty-value.htm.ini => testing/web-platform/meta/XMLHttpRequest/setrequestheader-allow-empty-value.htm.ini rename : testing/web-platform/meta/xhr/setrequestheader-allow-whitespace-in-value.htm.ini => testing/web-platform/meta/XMLHttpRequest/setrequestheader-allow-whitespace-in-value.htm.ini rename : testing/web-platform/meta/xhr/setrequestheader-content-type.htm.ini => testing/web-platform/meta/XMLHttpRequest/setrequestheader-content-type.htm.ini rename : testing/web-platform/meta/xhr/xmlhttprequest-sync-default-feature-policy.sub.html.ini => testing/web-platform/meta/XMLHttpRequest/xmlhttprequest-sync-default-feature-policy.sub.html.ini rename : testing/web-platform/meta/xhr/xmlhttprequest-timeout-overridesexpires.html.ini => testing/web-platform/meta/XMLHttpRequest/xmlhttprequest-timeout-overridesexpires.html.ini rename : testing/web-platform/meta/quirks/line-height-calculation.html.ini => testing/web-platform/meta/quirks-mode/line-height-calculation.html.ini rename : testing/web-platform/meta/quirks/percentage-height-calculation.html.ini => testing/web-platform/meta/quirks-mode/percentage-height-calculation.html.ini rename : testing/web-platform/meta/quirks/table-cell-width-calculation.html.ini => testing/web-platform/meta/quirks-mode/table-cell-width-calculation.html.ini |
|
Dorel Luca | 02fd157dd1 | Backed out changeset 351fd771cf1f (bug 1433144) for build bustage on test_orphan_file_patterns on a CLOSED TREE | |
Dorel Luca | dac9c6aa24 | Backed out changeset b2e5cf998caa (bug 1433190) for build bustage on test_orphan_file_patterns on a CLOSED TREE | |
Dorel Luca | 99ce5e0626 | Backed out changeset dec98f271429 (bug 1433144) for build bustage on test_orphan_file_patterns on a CLOSED TREE | |
ffxbld | 48aa9f1de6 | No bug, Automated blocklist update from host bld-linux64-spot-302 - a=blocklist-update | |
ffxbld | 723b975106 | No bug, Automated HPKP preload list update from host bld-linux64-spot-302 - a=hpkp-update | |
ffxbld | 0863879ac8 | No bug, Automated HSTS preload list update from host bld-linux64-spot-302 - a=hsts-update | |
Gurzau Raul | 062e1cf551 | Merge inbound to mozilla-central. a=merge | |
Gurzau Raul | 49c692983a | Merge mozilla-central to inbound. a=merge CLOSED TREE | |
Csoregi Natalia | f9dc75cd65 | Backed out changeset 640595d09e90 (bug 1419764) for reftest failures. a=backout | |
Csoregi Natalia | 6f5bb993b2 | Merge inbound to mozilla-central. a=merge | |
Kris Maglione | b3cac601f6 |
Bug 1432966: Sanitize HTML fragments created for chrome-privileged documents. r=bz f=gijs
This is a short-term solution to our inability to apply CSP to chrome-privileged documents. Ideally, we should be preventing all inline script execution in chrome-privileged documents, since the reprecussions of XSS in chrome documents are much worse than in content documents. Unfortunately, that's not possible in the near term because a) we don't support CSP in system principal documents at all, and b) we rely heavily on inline JS in our static XUL. This stop-gap solution at least prevents some of the most common vectors of XSS attack, by automatically sanitizing any HTML fragment created for a chrome-privileged document. MozReview-Commit-ID: 5w17celRFr --HG-- extra : rebase_source : 1c0a1448a06d5b65e548d9f5362d06cc6d865dbe extra : amend_source : 7184593019f238b86fd1e261941d8e8286fa4006 |
|
Ben Kelly | e9b911badc | Bug 1433044 P2 Update local-url-inherit-controller.https.html to test fetch() interception in local URL windows and workers. r=asuth | |
Ben Kelly | 4a88dfb69d | Bug 1433044 P1 Make workers keep the same null principal even if GetChannelResultPrincipal() returns different null principals. r=baku | |
James Graham | 64ff0b2a87 |
Bug 1433144 - Fix moz.build rule, a=testonly ON A CLOSED TREE
MozReview-Commit-ID: BHCLG2U9h5f |
|
Chris H-C | 1f517c62bd |
bug 1432855 - Early-return if we're asked to clear the expired histogram. r=gfritzsche
MozReview-Commit-ID: IH4BCDq8fgz |
|
Geoff Brown | f9aaea1460 | Bug 1432598 - Do not show first-run screens during android tests; r=snorp | |
James Graham | e3a00ec24d |
Bug 1433190 - Disable FileAPI url tests on OSX for instability, a=testonly
MozReview-Commit-ID: 2ZTKDYqYuOX |
|
James Graham | d23bc02a7f |
Bug 1433145 - Handle unexpected alerts when switching tests, r=ato
MozReview-Commit-ID: 55HzXggbw6N |
|
James Graham | fcf753eb29 |
Bug 1433144 - Ignore some lint errors introduced by the wpt import, a=testonly
MozReview-Commit-ID: IGNtkmzvOhs |
|
James Graham | 4fb55cba69 |
Bug 1433144 - Update metadata for wpt update, a=testonly
MozReview-Commit-ID: 7ILmVq1bNRj --HG-- rename : testing/web-platform/meta/quirks-mode/line-height-calculation.html.ini => testing/web-platform/meta/quirks/line-height-calculation.html.ini rename : testing/web-platform/meta/quirks-mode/percentage-height-calculation.html.ini => testing/web-platform/meta/quirks/percentage-height-calculation.html.ini rename : testing/web-platform/meta/quirks-mode/table-cell-width-calculation.html.ini => testing/web-platform/meta/quirks/table-cell-width-calculation.html.ini rename : testing/web-platform/meta/XMLHttpRequest/__dir__.ini => testing/web-platform/meta/xhr/__dir__.ini rename : testing/web-platform/meta/XMLHttpRequest/abort-after-stop.htm.ini => testing/web-platform/meta/xhr/abort-after-stop.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/access-control-basic-cors-safelisted-request-headers.htm.ini => testing/web-platform/meta/xhr/access-control-basic-cors-safelisted-request-headers.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/access-control-preflight-credential-async.htm.ini => testing/web-platform/meta/xhr/access-control-preflight-credential-async.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/access-control-preflight-credential-sync.htm.ini => testing/web-platform/meta/xhr/access-control-preflight-credential-sync.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/data-uri.htm.ini => testing/web-platform/meta/xhr/data-uri.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/event-upload-progress-crossorigin.htm.ini => testing/web-platform/meta/xhr/event-upload-progress-crossorigin.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/historical.html.ini => testing/web-platform/meta/xhr/historical.html.ini rename : testing/web-platform/meta/XMLHttpRequest/open-during-abort-processing.htm.ini => testing/web-platform/meta/xhr/open-during-abort-processing.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/open-url-multi-window-4.htm.ini => testing/web-platform/meta/xhr/open-url-multi-window-4.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/open-url-multi-window-6.htm.ini => testing/web-platform/meta/xhr/open-url-multi-window-6.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/overridemimetype-blob.html.ini => testing/web-platform/meta/xhr/overridemimetype-blob.html.ini rename : testing/web-platform/meta/XMLHttpRequest/responsetext-decoding.htm.ini => testing/web-platform/meta/xhr/responsetext-decoding.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/responsexml-document-properties.htm.ini => testing/web-platform/meta/xhr/responsexml-document-properties.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/send-authentication-basic.htm.ini => testing/web-platform/meta/xhr/send-authentication-basic.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/send-receive-utf16.htm.ini => testing/web-platform/meta/xhr/send-receive-utf16.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/send-redirect-to-cors.htm.ini => testing/web-platform/meta/xhr/send-redirect-to-cors.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/send-response-event-order.htm.ini => testing/web-platform/meta/xhr/send-response-event-order.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/send-response-upload-event-progress.htm.ini => testing/web-platform/meta/xhr/send-response-upload-event-progress.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/send-sync-blocks-async.htm.ini => testing/web-platform/meta/xhr/send-sync-blocks-async.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/setrequestheader-allow-empty-value.htm.ini => testing/web-platform/meta/xhr/setrequestheader-allow-empty-value.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/setrequestheader-allow-whitespace-in-value.htm.ini => testing/web-platform/meta/xhr/setrequestheader-allow-whitespace-in-value.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/setrequestheader-content-type.htm.ini => testing/web-platform/meta/xhr/setrequestheader-content-type.htm.ini rename : testing/web-platform/meta/XMLHttpRequest/xmlhttprequest-sync-default-feature-policy.sub.html.ini => testing/web-platform/meta/xhr/xmlhttprequest-sync-default-feature-policy.sub.html.ini rename : testing/web-platform/meta/XMLHttpRequest/xmlhttprequest-timeout-overridesexpires.html.ini => testing/web-platform/meta/xhr/xmlhttprequest-timeout-overridesexpires.html.ini |
|
James Graham | c5596cae4d |
Bug 1433144 - Update web-platform-tests to revision 2e19bfdaee6edb2c1069c07e14037284167284a3, a=testonly
MozReview-Commit-ID: 13sFeYHTYGC --HG-- rename : testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.worker.js => testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.worker.js => testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/hkdf.worker.js => testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/hkdf.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/pbkdf2.worker.js => testing/web-platform/tests/WebCryptoAPI/derive_bits_keys/pbkdf2.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/digest/digest.worker.js => testing/web-platform/tests/WebCryptoAPI/digest/digest.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_cbc.worker.js => testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_cbc.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_ctr.worker.js => testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_ctr.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_gcm.worker.js => testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/aes_gcm.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/rsa.worker.js => testing/web-platform/tests/WebCryptoAPI/encrypt_decrypt/rsa.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/import_export/ec_importKey.worker.js => testing/web-platform/tests/WebCryptoAPI/import_export/ec_importKey.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/import_export/rsa_importKey.worker.js => testing/web-platform/tests/WebCryptoAPI/import_export/rsa_importKey.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/import_export/symmetric_importKey.worker.js => testing/web-platform/tests/WebCryptoAPI/import_export/symmetric_importKey.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/sign_verify/ecdsa.worker.js => testing/web-platform/tests/WebCryptoAPI/sign_verify/ecdsa.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/sign_verify/hmac.worker.js => testing/web-platform/tests/WebCryptoAPI/sign_verify/hmac.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/sign_verify/rsa_pkcs.worker.js => testing/web-platform/tests/WebCryptoAPI/sign_verify/rsa_pkcs.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/sign_verify/rsa_pss.worker.js => testing/web-platform/tests/WebCryptoAPI/sign_verify/rsa_pss.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/wrapKey_unwrapKey/wrapKey_unwrapKey.worker.js => testing/web-platform/tests/WebCryptoAPI/wrapKey_unwrapKey/wrapKey_unwrapKey.https.worker.js rename : testing/web-platform/tests/WebCryptoAPI/WebCryptoAPI.idl => testing/web-platform/tests/interfaces/WebCryptoAPI.idl rename : testing/web-platform/tests/quirks-mode/active-and-hover-manual.html => testing/web-platform/tests/quirks/active-and-hover-manual.html rename : testing/web-platform/tests/quirks-mode/blocks-ignore-line-height.html => testing/web-platform/tests/quirks/blocks-ignore-line-height.html rename : testing/web-platform/tests/quirks-mode/classname-query-after-sibling-adoption.html => testing/web-platform/tests/quirks/classname-query-after-sibling-adoption.html rename : testing/web-platform/tests/quirks-mode/hashless-hex-color.html => testing/web-platform/tests/quirks/hashless-hex-color.html rename : testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size-ref.html => testing/web-platform/tests/quirks/historical/list-item-bullet-size-ref.html rename : testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size.html => testing/web-platform/tests/quirks/historical/list-item-bullet-size.html rename : testing/web-platform/tests/quirks-mode/line-height-calculation.html => testing/web-platform/tests/quirks/line-height-calculation.html rename : testing/web-platform/tests/quirks-mode/percentage-height-calculation.html => testing/web-platform/tests/quirks/percentage-height-calculation.html rename : testing/web-platform/tests/quirks-mode/supports.html => testing/web-platform/tests/quirks/supports.html rename : testing/web-platform/tests/quirks-mode/table-cell-nowrap-minimum-width-calculation.html => testing/web-platform/tests/quirks/table-cell-nowrap-minimum-width-calculation.html rename : testing/web-platform/tests/quirks-mode/table-cell-width-calculation.html => testing/web-platform/tests/quirks/table-cell-width-calculation.html rename : testing/web-platform/tests/quirks-mode/unitless-length.html => testing/web-platform/tests/quirks/unitless-length.html rename : testing/web-platform/tests/XMLHttpRequest/resources/pass.txt => testing/web-platform/tests/service-workers/service-worker/resources/pass.txt rename : testing/web-platform/tests/XMLHttpRequest/FormData-append.html => testing/web-platform/tests/xhr/FormData-append.html rename : testing/web-platform/tests/XMLHttpRequest/OWNERS => testing/web-platform/tests/xhr/OWNERS rename : testing/web-platform/tests/XMLHttpRequest/README.md => testing/web-platform/tests/xhr/README.md rename : testing/web-platform/tests/XMLHttpRequest/XMLHttpRequest-withCredentials.any.js => testing/web-platform/tests/xhr/XMLHttpRequest-withCredentials.any.js rename : testing/web-platform/tests/XMLHttpRequest/abort-after-receive.htm => testing/web-platform/tests/xhr/abort-after-receive.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-after-send.htm => testing/web-platform/tests/xhr/abort-after-send.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-after-stop.htm => testing/web-platform/tests/xhr/abort-after-stop.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm => testing/web-platform/tests/xhr/abort-after-timeout.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-during-done.htm => testing/web-platform/tests/xhr/abort-during-done.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-during-headers-received.htm => testing/web-platform/tests/xhr/abort-during-headers-received.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-during-loading.htm => testing/web-platform/tests/xhr/abort-during-loading.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-during-open.htm => testing/web-platform/tests/xhr/abort-during-open.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-during-open.js => testing/web-platform/tests/xhr/abort-during-open.js rename : testing/web-platform/tests/XMLHttpRequest/abort-during-open.worker.js => testing/web-platform/tests/xhr/abort-during-open.worker.js rename : testing/web-platform/tests/XMLHttpRequest/abort-during-unsent.htm => testing/web-platform/tests/xhr/abort-during-unsent.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-during-upload.htm => testing/web-platform/tests/xhr/abort-during-upload.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-event-abort.htm => testing/web-platform/tests/xhr/abort-event-abort.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-event-listeners.htm => testing/web-platform/tests/xhr/abort-event-listeners.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-event-loadend.htm => testing/web-platform/tests/xhr/abort-event-loadend.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-event-order.htm => testing/web-platform/tests/xhr/abort-event-order.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-upload-event-abort.htm => testing/web-platform/tests/xhr/abort-upload-event-abort.htm rename : testing/web-platform/tests/XMLHttpRequest/abort-upload-event-loadend.htm => testing/web-platform/tests/xhr/abort-upload-event-loadend.htm rename : testing/web-platform/tests/XMLHttpRequest/anonymous-mode-unsupported.htm => testing/web-platform/tests/xhr/anonymous-mode-unsupported.htm rename : testing/web-platform/tests/XMLHttpRequest/data-uri.htm => testing/web-platform/tests/xhr/data-uri.htm rename : testing/web-platform/tests/XMLHttpRequest/event-abort.htm => testing/web-platform/tests/xhr/event-abort.htm rename : testing/web-platform/tests/XMLHttpRequest/event-error-order.sub.html => testing/web-platform/tests/xhr/event-error-order.sub.html rename : testing/web-platform/tests/XMLHttpRequest/event-error.sub.html => testing/web-platform/tests/xhr/event-error.sub.html rename : testing/web-platform/tests/XMLHttpRequest/event-load.htm => testing/web-platform/tests/xhr/event-load.htm rename : testing/web-platform/tests/XMLHttpRequest/event-loadend.htm => testing/web-platform/tests/xhr/event-loadend.htm rename : testing/web-platform/tests/XMLHttpRequest/event-loadstart-upload.htm => testing/web-platform/tests/xhr/event-loadstart-upload.htm rename : testing/web-platform/tests/XMLHttpRequest/event-loadstart.htm => testing/web-platform/tests/xhr/event-loadstart.htm rename : testing/web-platform/tests/XMLHttpRequest/event-progress.htm => testing/web-platform/tests/xhr/event-progress.htm rename : testing/web-platform/tests/XMLHttpRequest/event-readystate-sync-open.htm => testing/web-platform/tests/xhr/event-readystate-sync-open.htm rename : testing/web-platform/tests/XMLHttpRequest/event-readystatechange-loaded.htm => testing/web-platform/tests/xhr/event-readystatechange-loaded.htm rename : testing/web-platform/tests/XMLHttpRequest/event-timeout-order.htm => testing/web-platform/tests/xhr/event-timeout-order.htm rename : testing/web-platform/tests/XMLHttpRequest/event-timeout.htm => testing/web-platform/tests/xhr/event-timeout.htm rename : testing/web-platform/tests/XMLHttpRequest/event-upload-progress.htm => testing/web-platform/tests/xhr/event-upload-progress.htm rename : testing/web-platform/tests/XMLHttpRequest/firing-events-http-content-length.html => testing/web-platform/tests/xhr/firing-events-http-content-length.html rename : testing/web-platform/tests/XMLHttpRequest/firing-events-http-no-content-length.html => testing/web-platform/tests/xhr/firing-events-http-no-content-length.html rename : testing/web-platform/tests/XMLHttpRequest/folder.txt => testing/web-platform/tests/xhr/folder.txt rename : testing/web-platform/tests/XMLHttpRequest/formdata-blob.htm => testing/web-platform/tests/xhr/formdata-blob.htm rename : testing/web-platform/tests/XMLHttpRequest/formdata-delete.htm => testing/web-platform/tests/xhr/formdata-delete.htm rename : testing/web-platform/tests/XMLHttpRequest/formdata-foreach.html => testing/web-platform/tests/xhr/formdata-foreach.html rename : testing/web-platform/tests/XMLHttpRequest/formdata-get.htm => testing/web-platform/tests/xhr/formdata-get.htm rename : testing/web-platform/tests/XMLHttpRequest/formdata-has.htm => testing/web-platform/tests/xhr/formdata-has.htm rename : testing/web-platform/tests/XMLHttpRequest/formdata-set.htm => testing/web-platform/tests/xhr/formdata-set.htm rename : testing/web-platform/tests/XMLHttpRequest/formdata.htm => testing/web-platform/tests/xhr/formdata.htm rename : testing/web-platform/tests/XMLHttpRequest/getallresponseheaders-cookies.htm => testing/web-platform/tests/xhr/getallresponseheaders-cookies.htm rename : testing/web-platform/tests/XMLHttpRequest/getallresponseheaders-status.htm => testing/web-platform/tests/xhr/getallresponseheaders-status.htm rename : testing/web-platform/tests/XMLHttpRequest/getallresponseheaders.htm => testing/web-platform/tests/xhr/getallresponseheaders.htm rename : testing/web-platform/tests/XMLHttpRequest/getresponseheader-case-insensitive.htm => testing/web-platform/tests/xhr/getresponseheader-case-insensitive.htm rename : testing/web-platform/tests/XMLHttpRequest/getresponseheader-chunked-trailer.htm => testing/web-platform/tests/xhr/getresponseheader-chunked-trailer.htm rename : testing/web-platform/tests/XMLHttpRequest/getresponseheader-cookies-and-more.htm => testing/web-platform/tests/xhr/getresponseheader-cookies-and-more.htm rename : testing/web-platform/tests/XMLHttpRequest/getresponseheader-error-state.htm => testing/web-platform/tests/xhr/getresponseheader-error-state.htm rename : testing/web-platform/tests/XMLHttpRequest/getresponseheader-server-date.htm => testing/web-platform/tests/xhr/getresponseheader-server-date.htm rename : testing/web-platform/tests/XMLHttpRequest/getresponseheader-special-characters.htm => testing/web-platform/tests/xhr/getresponseheader-special-characters.htm rename : testing/web-platform/tests/XMLHttpRequest/getresponseheader-unsent-opened-state.htm => testing/web-platform/tests/xhr/getresponseheader-unsent-opened-state.htm rename : testing/web-platform/tests/XMLHttpRequest/headers-normalize-response.htm => testing/web-platform/tests/xhr/headers-normalize-response.htm rename : testing/web-platform/tests/XMLHttpRequest/historical.html => testing/web-platform/tests/xhr/historical.html rename : testing/web-platform/tests/XMLHttpRequest/loadstart-and-state.html => testing/web-platform/tests/xhr/loadstart-and-state.html rename : testing/web-platform/tests/XMLHttpRequest/no-utf16-json.htm => testing/web-platform/tests/xhr/no-utf16-json.htm rename : testing/web-platform/tests/XMLHttpRequest/open-after-abort.htm => testing/web-platform/tests/xhr/open-after-abort.htm rename : testing/web-platform/tests/XMLHttpRequest/open-after-setrequestheader.htm => testing/web-platform/tests/xhr/open-after-setrequestheader.htm rename : testing/web-platform/tests/XMLHttpRequest/open-during-abort-event.htm => testing/web-platform/tests/xhr/open-during-abort-event.htm rename : testing/web-platform/tests/XMLHttpRequest/open-during-abort-processing.htm => testing/web-platform/tests/xhr/open-during-abort-processing.htm rename : testing/web-platform/tests/XMLHttpRequest/open-during-abort.htm => testing/web-platform/tests/xhr/open-during-abort.htm rename : testing/web-platform/tests/XMLHttpRequest/open-method-bogus.htm => testing/web-platform/tests/xhr/open-method-bogus.htm rename : testing/web-platform/tests/XMLHttpRequest/open-method-case-insensitive.htm => testing/web-platform/tests/xhr/open-method-case-insensitive.htm rename : testing/web-platform/tests/XMLHttpRequest/open-method-case-sensitive.htm => testing/web-platform/tests/xhr/open-method-case-sensitive.htm rename : testing/web-platform/tests/XMLHttpRequest/open-method-insecure.htm => testing/web-platform/tests/xhr/open-method-insecure.htm rename : testing/web-platform/tests/XMLHttpRequest/open-method-responsetype-set-sync.htm => testing/web-platform/tests/xhr/open-method-responsetype-set-sync.htm rename : testing/web-platform/tests/XMLHttpRequest/open-open-send.htm => testing/web-platform/tests/xhr/open-open-send.htm rename : testing/web-platform/tests/XMLHttpRequest/open-open-sync-send.htm => testing/web-platform/tests/xhr/open-open-sync-send.htm rename : testing/web-platform/tests/XMLHttpRequest/open-referer.htm => testing/web-platform/tests/xhr/open-referer.htm rename : testing/web-platform/tests/XMLHttpRequest/open-send-during-abort.htm => testing/web-platform/tests/xhr/open-send-during-abort.htm rename : testing/web-platform/tests/XMLHttpRequest/open-send-open.htm => testing/web-platform/tests/xhr/open-send-open.htm rename : testing/web-platform/tests/XMLHttpRequest/open-sync-open-send.htm => testing/web-platform/tests/xhr/open-sync-open-send.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-about-blank-window.htm => testing/web-platform/tests/xhr/open-url-about-blank-window.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-base-inserted-after-open.htm => testing/web-platform/tests/xhr/open-url-base-inserted-after-open.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-base-inserted.htm => testing/web-platform/tests/xhr/open-url-base-inserted.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-base.htm => testing/web-platform/tests/xhr/open-url-base.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-encoding.htm => testing/web-platform/tests/xhr/open-url-encoding.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-javascript-window-2.htm => testing/web-platform/tests/xhr/open-url-javascript-window-2.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-javascript-window.htm => testing/web-platform/tests/xhr/open-url-javascript-window.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-2.htm => testing/web-platform/tests/xhr/open-url-multi-window-2.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-3.htm => testing/web-platform/tests/xhr/open-url-multi-window-3.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-4.htm => testing/web-platform/tests/xhr/open-url-multi-window-4.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-5.htm => testing/web-platform/tests/xhr/open-url-multi-window-5.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-multi-window-6.htm => testing/web-platform/tests/xhr/open-url-multi-window-6.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-multi-window.htm => testing/web-platform/tests/xhr/open-url-multi-window.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-redirected-worker-origin.htm => testing/web-platform/tests/xhr/open-url-redirected-worker-origin.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-worker-origin.htm => testing/web-platform/tests/xhr/open-url-worker-origin.htm rename : testing/web-platform/tests/XMLHttpRequest/open-url-worker-simple.htm => testing/web-platform/tests/xhr/open-url-worker-simple.htm rename : testing/web-platform/tests/XMLHttpRequest/open-user-password-non-same-origin.htm => testing/web-platform/tests/xhr/open-user-password-non-same-origin.htm rename : testing/web-platform/tests/XMLHttpRequest/overridemimetype-blob.html => testing/web-platform/tests/xhr/overridemimetype-blob.html rename : testing/web-platform/tests/XMLHttpRequest/overridemimetype-done-state.htm => testing/web-platform/tests/xhr/overridemimetype-done-state.htm rename : testing/web-platform/tests/XMLHttpRequest/overridemimetype-headers-received-state-force-shiftjis.htm => testing/web-platform/tests/xhr/overridemimetype-headers-received-state-force-shiftjis.htm rename : testing/web-platform/tests/XMLHttpRequest/overridemimetype-invalid-mime-type.htm => testing/web-platform/tests/xhr/overridemimetype-invalid-mime-type.htm rename : testing/web-platform/tests/XMLHttpRequest/overridemimetype-loading-state.htm => testing/web-platform/tests/xhr/overridemimetype-loading-state.htm rename : testing/web-platform/tests/XMLHttpRequest/overridemimetype-open-state-force-utf-8.htm => testing/web-platform/tests/xhr/overridemimetype-open-state-force-utf-8.htm rename : testing/web-platform/tests/XMLHttpRequest/overridemimetype-open-state-force-xml.htm => testing/web-platform/tests/xhr/overridemimetype-open-state-force-xml.htm rename : testing/web-platform/tests/XMLHttpRequest/overridemimetype-unsent-state-force-shiftjis.htm => testing/web-platform/tests/xhr/overridemimetype-unsent-state-force-shiftjis.htm rename : testing/web-platform/tests/XMLHttpRequest/preserve-ua-header-on-redirect.htm => testing/web-platform/tests/xhr/preserve-ua-header-on-redirect.htm rename : testing/web-platform/tests/XMLHttpRequest/progress-events-response-data-gzip.htm => testing/web-platform/tests/xhr/progress-events-response-data-gzip.htm rename : testing/web-platform/tests/XMLHttpRequest/progressevent-constructor.html => testing/web-platform/tests/xhr/progressevent-constructor.html rename : testing/web-platform/tests/XMLHttpRequest/progressevent-interface.html => testing/web-platform/tests/xhr/progressevent-interface.html rename : testing/web-platform/tests/XMLHttpRequest/resources/accept-language.py => testing/web-platform/tests/xhr/resources/accept-language.py rename : testing/web-platform/tests/XMLHttpRequest/resources/accept.py => testing/web-platform/tests/xhr/resources/accept.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-allow-lists.py => testing/web-platform/tests/xhr/resources/access-control-allow-lists.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-allow-with-body.py => testing/web-platform/tests/xhr/resources/access-control-allow-with-body.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-auth-basic.py => testing/web-platform/tests/xhr/resources/access-control-auth-basic.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-allow-no-credentials.py => testing/web-platform/tests/xhr/resources/access-control-basic-allow-no-credentials.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-allow-star.py => testing/web-platform/tests/xhr/resources/access-control-basic-allow-star.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-allow.py => testing/web-platform/tests/xhr/resources/access-control-basic-allow.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-cors-safelisted-request-headers.py => testing/web-platform/tests/xhr/resources/access-control-basic-cors-safelisted-request-headers.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-denied.py => testing/web-platform/tests/xhr/resources/access-control-basic-denied.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-options-not-supported.py => testing/web-platform/tests/xhr/resources/access-control-basic-options-not-supported.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-preflight-cache-invalidation.py => testing/web-platform/tests/xhr/resources/access-control-basic-preflight-cache-invalidation.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-preflight-cache-timeout.py => testing/web-platform/tests/xhr/resources/access-control-basic-preflight-cache-timeout.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-preflight-cache.py => testing/web-platform/tests/xhr/resources/access-control-basic-preflight-cache.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-put-allow.py => testing/web-platform/tests/xhr/resources/access-control-basic-put-allow.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-basic-whitelist-response-headers.py => testing/web-platform/tests/xhr/resources/access-control-basic-whitelist-response-headers.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-cookie.py => testing/web-platform/tests/xhr/resources/access-control-cookie.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-origin-header.py => testing/web-platform/tests/xhr/resources/access-control-origin-header.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-denied.py => testing/web-platform/tests/xhr/resources/access-control-preflight-denied.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-header-lowercase.py => testing/web-platform/tests/xhr/resources/access-control-preflight-request-header-lowercase.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-header-sorted.py => testing/web-platform/tests/xhr/resources/access-control-preflight-request-header-sorted.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-headers-origin.py => testing/web-platform/tests/xhr/resources/access-control-preflight-request-headers-origin.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-invalid-status.py => testing/web-platform/tests/xhr/resources/access-control-preflight-request-invalid-status.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-preflight-request-must-not-contain-cookie.py => testing/web-platform/tests/xhr/resources/access-control-preflight-request-must-not-contain-cookie.py rename : testing/web-platform/tests/XMLHttpRequest/resources/access-control-sandboxed-iframe.html => testing/web-platform/tests/xhr/resources/access-control-sandboxed-iframe.html rename : testing/web-platform/tests/XMLHttpRequest/resources/auth1/auth.py => testing/web-platform/tests/xhr/resources/auth1/auth.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth2/auth.py => testing/web-platform/tests/xhr/resources/auth2/auth.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth2/corsenabled.py => testing/web-platform/tests/xhr/resources/auth2/corsenabled.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth3/auth.py => testing/web-platform/tests/xhr/resources/auth3/auth.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth4/auth.py => testing/web-platform/tests/xhr/resources/auth4/auth.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth5/auth.py => testing/web-platform/tests/xhr/resources/auth5/auth.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth6/auth.py => testing/web-platform/tests/xhr/resources/auth6/auth.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth7/corsenabled.py => testing/web-platform/tests/xhr/resources/auth7/corsenabled.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth8/corsenabled-no-authorize.py => testing/web-platform/tests/xhr/resources/auth8/corsenabled-no-authorize.py rename : testing/web-platform/tests/XMLHttpRequest/resources/auth9/auth.py => testing/web-platform/tests/xhr/resources/auth9/auth.py rename : testing/web-platform/tests/XMLHttpRequest/resources/authentication.py => testing/web-platform/tests/xhr/resources/authentication.py rename : testing/web-platform/tests/XMLHttpRequest/resources/base.xml => testing/web-platform/tests/xhr/resources/base.xml rename : testing/web-platform/tests/XMLHttpRequest/resources/chunked.py => testing/web-platform/tests/xhr/resources/chunked.py rename : testing/web-platform/tests/XMLHttpRequest/resources/conditional.py => testing/web-platform/tests/xhr/resources/conditional.py rename : testing/web-platform/tests/XMLHttpRequest/resources/content.py => testing/web-platform/tests/xhr/resources/content.py rename : testing/web-platform/tests/XMLHttpRequest/resources/corsenabled.py => testing/web-platform/tests/xhr/resources/corsenabled.py rename : testing/web-platform/tests/XMLHttpRequest/resources/delay.py => testing/web-platform/tests/xhr/resources/delay.py rename : testing/web-platform/tests/XMLHttpRequest/resources/echo-headers.py => testing/web-platform/tests/xhr/resources/echo-headers.py rename : testing/web-platform/tests/XMLHttpRequest/resources/echo-method.py => testing/web-platform/tests/xhr/resources/echo-method.py rename : testing/web-platform/tests/XMLHttpRequest/resources/empty-div-utf8-html.py => testing/web-platform/tests/xhr/resources/empty-div-utf8-html.py rename : testing/web-platform/tests/XMLHttpRequest/resources/folder.txt => testing/web-platform/tests/xhr/resources/folder.txt rename : testing/web-platform/tests/XMLHttpRequest/resources/form.py => testing/web-platform/tests/xhr/resources/form.py rename : testing/web-platform/tests/XMLHttpRequest/resources/gzip.py => testing/web-platform/tests/xhr/resources/gzip.py rename : testing/web-platform/tests/XMLHttpRequest/resources/header-content-length.asis => testing/web-platform/tests/xhr/resources/header-content-length.asis rename : testing/web-platform/tests/XMLHttpRequest/resources/headers-basic.asis => testing/web-platform/tests/xhr/resources/headers-basic.asis rename : testing/web-platform/tests/XMLHttpRequest/resources/headers.asis => testing/web-platform/tests/xhr/resources/headers.asis rename : testing/web-platform/tests/XMLHttpRequest/resources/headers.py => testing/web-platform/tests/xhr/resources/headers.py rename : testing/web-platform/tests/XMLHttpRequest/resources/image.gif => testing/web-platform/tests/xhr/resources/image.gif rename : testing/web-platform/tests/XMLHttpRequest/resources/img-utf8-html.py => testing/web-platform/tests/xhr/resources/img-utf8-html.py rename : testing/web-platform/tests/XMLHttpRequest/resources/img.jpg => testing/web-platform/tests/xhr/resources/img.jpg rename : testing/web-platform/tests/XMLHttpRequest/resources/infinite-redirects.py => testing/web-platform/tests/xhr/resources/infinite-redirects.py rename : testing/web-platform/tests/XMLHttpRequest/resources/init.htm => testing/web-platform/tests/xhr/resources/init.htm rename : testing/web-platform/tests/XMLHttpRequest/resources/inspect-headers.py => testing/web-platform/tests/xhr/resources/inspect-headers.py rename : testing/web-platform/tests/XMLHttpRequest/resources/invalid-utf8-html.py => testing/web-platform/tests/xhr/resources/invalid-utf8-html.py rename : testing/web-platform/tests/XMLHttpRequest/resources/last-modified.py => testing/web-platform/tests/xhr/resources/last-modified.py rename : testing/web-platform/tests/XMLHttpRequest/resources/no-custom-header-on-preflight.py => testing/web-platform/tests/xhr/resources/no-custom-header-on-preflight.py rename : testing/web-platform/tests/XMLHttpRequest/resources/nocors/folder.txt => testing/web-platform/tests/xhr/resources/nocors/folder.txt rename : testing/web-platform/tests/XMLHttpRequest/resources/parse-headers.py => testing/web-platform/tests/xhr/resources/parse-headers.py rename : testing/web-platform/tests/XMLHttpRequest/resources/pass.txt => testing/web-platform/tests/xhr/resources/pass.txt rename : testing/web-platform/tests/XMLHttpRequest/resources/redirect-cors.py => testing/web-platform/tests/xhr/resources/redirect-cors.py rename : testing/web-platform/tests/XMLHttpRequest/resources/redirect.py => testing/web-platform/tests/xhr/resources/redirect.py rename : testing/web-platform/tests/XMLHttpRequest/resources/requri.py => testing/web-platform/tests/xhr/resources/requri.py rename : testing/web-platform/tests/XMLHttpRequest/resources/reset-token.py => testing/web-platform/tests/xhr/resources/reset-token.py rename : testing/web-platform/tests/XMLHttpRequest/resources/responseType-document-in-worker.js => testing/web-platform/tests/xhr/resources/responseType-document-in-worker.js rename : testing/web-platform/tests/XMLHttpRequest/resources/responseXML-unavailable-in-worker.js => testing/web-platform/tests/xhr/resources/responseXML-unavailable-in-worker.js rename : testing/web-platform/tests/XMLHttpRequest/resources/send-after-setting-document-domain-window-1.htm => testing/web-platform/tests/xhr/resources/send-after-setting-document-domain-window-1.htm rename : testing/web-platform/tests/XMLHttpRequest/resources/send-after-setting-document-domain-window-2.htm => testing/web-platform/tests/xhr/resources/send-after-setting-document-domain-window-2.htm rename : testing/web-platform/tests/XMLHttpRequest/resources/send-after-setting-document-domain-window-helper.js => testing/web-platform/tests/xhr/resources/send-after-setting-document-domain-window-helper.js rename : testing/web-platform/tests/XMLHttpRequest/resources/shift-jis-html.py => testing/web-platform/tests/xhr/resources/shift-jis-html.py rename : testing/web-platform/tests/XMLHttpRequest/resources/status.py => testing/web-platform/tests/xhr/resources/status.py rename : testing/web-platform/tests/XMLHttpRequest/resources/trickle.py => testing/web-platform/tests/xhr/resources/trickle.py rename : testing/web-platform/tests/XMLHttpRequest/resources/upload.py => testing/web-platform/tests/xhr/resources/upload.py rename : testing/web-platform/tests/XMLHttpRequest/resources/utf16-bom.json => testing/web-platform/tests/xhr/resources/utf16-bom.json rename : testing/web-platform/tests/XMLHttpRequest/resources/utf16.txt => testing/web-platform/tests/xhr/resources/utf16.txt rename : testing/web-platform/tests/XMLHttpRequest/resources/well-formed.xml => testing/web-platform/tests/xhr/resources/well-formed.xml rename : testing/web-platform/tests/XMLHttpRequest/resources/win-1252-html.py => testing/web-platform/tests/xhr/resources/win-1252-html.py rename : testing/web-platform/tests/XMLHttpRequest/resources/win-1252-xml.py => testing/web-platform/tests/xhr/resources/win-1252-xml.py rename : testing/web-platform/tests/XMLHttpRequest/resources/workerxhr-origin-referrer.js => testing/web-platform/tests/xhr/resources/workerxhr-origin-referrer.js rename : testing/web-platform/tests/XMLHttpRequest/resources/workerxhr-simple.js => testing/web-platform/tests/xhr/resources/workerxhr-simple.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-event-order.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-event-order.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-aborted.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-aborted.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-abortedonmain.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-abortedonmain.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-overrides.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-overrides.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-overridesexpires.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-overridesexpires.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-runner.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-runner.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-simple.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-simple.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-synconmain.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-synconmain.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-synconworker.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-synconworker.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout-twice.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout-twice.js rename : testing/web-platform/tests/XMLHttpRequest/resources/xmlhttprequest-timeout.js => testing/web-platform/tests/xhr/resources/xmlhttprequest-timeout.js rename : testing/web-platform/tests/XMLHttpRequest/resources/zlib.py => testing/web-platform/tests/xhr/resources/zlib.py rename : testing/web-platform/tests/XMLHttpRequest/response-data-arraybuffer.htm => testing/web-platform/tests/xhr/response-data-arraybuffer.htm rename : testing/web-platform/tests/XMLHttpRequest/response-data-blob.htm => testing/web-platform/tests/xhr/response-data-blob.htm rename : testing/web-platform/tests/XMLHttpRequest/response-data-deflate.htm => testing/web-platform/tests/xhr/response-data-deflate.htm rename : testing/web-platform/tests/XMLHttpRequest/response-data-gzip.htm => testing/web-platform/tests/xhr/response-data-gzip.htm rename : testing/web-platform/tests/XMLHttpRequest/response-data-progress.htm => testing/web-platform/tests/xhr/response-data-progress.htm rename : testing/web-platform/tests/XMLHttpRequest/response-invalid-responsetype.htm => testing/web-platform/tests/xhr/response-invalid-responsetype.htm rename : testing/web-platform/tests/XMLHttpRequest/response-json.htm => testing/web-platform/tests/xhr/response-json.htm rename : testing/web-platform/tests/XMLHttpRequest/response-method.htm => testing/web-platform/tests/xhr/response-method.htm rename : testing/web-platform/tests/XMLHttpRequest/responseText-status.html => testing/web-platform/tests/xhr/responseText-status.html rename : testing/web-platform/tests/XMLHttpRequest/responseType-document-in-worker.html => testing/web-platform/tests/xhr/responseType-document-in-worker.html rename : testing/web-platform/tests/XMLHttpRequest/responseXML-unavailable-in-worker.html => testing/web-platform/tests/xhr/responseXML-unavailable-in-worker.html rename : testing/web-platform/tests/XMLHttpRequest/responsedocument-decoding.htm => testing/web-platform/tests/xhr/responsedocument-decoding.htm rename : testing/web-platform/tests/XMLHttpRequest/responsetext-decoding.htm => testing/web-platform/tests/xhr/responsetext-decoding.htm rename : testing/web-platform/tests/XMLHttpRequest/responsetype.html => testing/web-platform/tests/xhr/responsetype.html rename : testing/web-platform/tests/XMLHttpRequest/responseurl.html => testing/web-platform/tests/xhr/responseurl.html rename : testing/web-platform/tests/XMLHttpRequest/responsexml-basic.htm => testing/web-platform/tests/xhr/responsexml-basic.htm rename : testing/web-platform/tests/XMLHttpRequest/responsexml-document-properties.htm => testing/web-platform/tests/xhr/responsexml-document-properties.htm rename : testing/web-platform/tests/XMLHttpRequest/responsexml-get-twice.htm => testing/web-platform/tests/xhr/responsexml-get-twice.htm rename : testing/web-platform/tests/XMLHttpRequest/responsexml-media-type.htm => testing/web-platform/tests/xhr/responsexml-media-type.htm rename : testing/web-platform/tests/XMLHttpRequest/responsexml-non-document-types.htm => testing/web-platform/tests/xhr/responsexml-non-document-types.htm rename : testing/web-platform/tests/XMLHttpRequest/responsexml-non-well-formed.htm => testing/web-platform/tests/xhr/responsexml-non-well-formed.htm rename : testing/web-platform/tests/XMLHttpRequest/send-accept-language.htm => testing/web-platform/tests/xhr/send-accept-language.htm rename : testing/web-platform/tests/XMLHttpRequest/send-accept.htm => testing/web-platform/tests/xhr/send-accept.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-cors-not-enabled.htm => testing/web-platform/tests/xhr/send-authentication-basic-cors-not-enabled.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-cors.htm => testing/web-platform/tests/xhr/send-authentication-basic-cors.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-repeat-no-args.htm => testing/web-platform/tests/xhr/send-authentication-basic-repeat-no-args.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-setrequestheader-and-arguments.htm => testing/web-platform/tests/xhr/send-authentication-basic-setrequestheader-and-arguments.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-setrequestheader-existing-session.htm => testing/web-platform/tests/xhr/send-authentication-basic-setrequestheader-existing-session.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-basic-setrequestheader.htm => testing/web-platform/tests/xhr/send-authentication-basic-setrequestheader.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-basic.htm => testing/web-platform/tests/xhr/send-authentication-basic.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-competing-names-passwords.htm => testing/web-platform/tests/xhr/send-authentication-competing-names-passwords.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-cors-basic-setrequestheader.htm => testing/web-platform/tests/xhr/send-authentication-cors-basic-setrequestheader.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-cors-setrequestheader-no-cred.htm => testing/web-platform/tests/xhr/send-authentication-cors-setrequestheader-no-cred.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-existing-session-manual.htm => testing/web-platform/tests/xhr/send-authentication-existing-session-manual.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-prompt-2-manual.htm => testing/web-platform/tests/xhr/send-authentication-prompt-2-manual.htm rename : testing/web-platform/tests/XMLHttpRequest/send-authentication-prompt-manual.htm => testing/web-platform/tests/xhr/send-authentication-prompt-manual.htm rename : testing/web-platform/tests/XMLHttpRequest/send-blob-with-no-mime-type.html => testing/web-platform/tests/xhr/send-blob-with-no-mime-type.html rename : testing/web-platform/tests/XMLHttpRequest/send-conditional-cors.htm => testing/web-platform/tests/xhr/send-conditional-cors.htm rename : testing/web-platform/tests/XMLHttpRequest/send-conditional.htm => testing/web-platform/tests/xhr/send-conditional.htm rename : testing/web-platform/tests/XMLHttpRequest/send-content-type-charset.htm => testing/web-platform/tests/xhr/send-content-type-charset.htm rename : testing/web-platform/tests/XMLHttpRequest/send-content-type-string.htm => testing/web-platform/tests/xhr/send-content-type-string.htm rename : testing/web-platform/tests/XMLHttpRequest/send-data-arraybuffer.htm => testing/web-platform/tests/xhr/send-data-arraybuffer.htm rename : testing/web-platform/tests/XMLHttpRequest/send-data-arraybufferview.htm => testing/web-platform/tests/xhr/send-data-arraybufferview.htm rename : testing/web-platform/tests/XMLHttpRequest/send-data-blob.htm => testing/web-platform/tests/xhr/send-data-blob.htm rename : testing/web-platform/tests/XMLHttpRequest/send-data-es-object.htm => testing/web-platform/tests/xhr/send-data-es-object.htm rename : testing/web-platform/tests/XMLHttpRequest/send-data-formdata.htm => testing/web-platform/tests/xhr/send-data-formdata.htm rename : testing/web-platform/tests/XMLHttpRequest/send-data-unexpected-tostring.htm => testing/web-platform/tests/xhr/send-data-unexpected-tostring.htm rename : testing/web-platform/tests/XMLHttpRequest/send-entity-body-basic.htm => testing/web-platform/tests/xhr/send-entity-body-basic.htm rename : testing/web-platform/tests/XMLHttpRequest/send-entity-body-document-bogus.htm => testing/web-platform/tests/xhr/send-entity-body-document-bogus.htm rename : testing/web-platform/tests/XMLHttpRequest/send-entity-body-document.htm => testing/web-platform/tests/xhr/send-entity-body-document.htm rename : testing/web-platform/tests/XMLHttpRequest/send-entity-body-empty.htm => testing/web-platform/tests/xhr/send-entity-body-empty.htm rename : testing/web-platform/tests/XMLHttpRequest/send-entity-body-get-head-async.htm => testing/web-platform/tests/xhr/send-entity-body-get-head-async.htm rename : testing/web-platform/tests/XMLHttpRequest/send-entity-body-get-head.htm => testing/web-platform/tests/xhr/send-entity-body-get-head.htm rename : testing/web-platform/tests/XMLHttpRequest/send-entity-body-none.htm => testing/web-platform/tests/xhr/send-entity-body-none.htm rename : testing/web-platform/tests/XMLHttpRequest/send-network-error-async-events.sub.htm => testing/web-platform/tests/xhr/send-network-error-async-events.sub.htm rename : testing/web-platform/tests/XMLHttpRequest/send-network-error-sync-events.sub.htm => testing/web-platform/tests/xhr/send-network-error-sync-events.sub.htm rename : testing/web-platform/tests/XMLHttpRequest/send-no-response-event-loadend.htm => testing/web-platform/tests/xhr/send-no-response-event-loadend.htm rename : testing/web-platform/tests/XMLHttpRequest/send-no-response-event-loadstart.htm => testing/web-platform/tests/xhr/send-no-response-event-loadstart.htm rename : testing/web-platform/tests/XMLHttpRequest/send-no-response-event-order.htm => testing/web-platform/tests/xhr/send-no-response-event-order.htm rename : testing/web-platform/tests/XMLHttpRequest/send-non-same-origin.htm => testing/web-platform/tests/xhr/send-non-same-origin.htm rename : testing/web-platform/tests/XMLHttpRequest/send-receive-utf16.htm => testing/web-platform/tests/xhr/send-receive-utf16.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect-bogus-sync.htm => testing/web-platform/tests/xhr/send-redirect-bogus-sync.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect-bogus.htm => testing/web-platform/tests/xhr/send-redirect-bogus.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect-infinite-sync.htm => testing/web-platform/tests/xhr/send-redirect-infinite-sync.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect-infinite.htm => testing/web-platform/tests/xhr/send-redirect-infinite.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect-no-location.htm => testing/web-platform/tests/xhr/send-redirect-no-location.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect-post-upload.htm => testing/web-platform/tests/xhr/send-redirect-post-upload.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect-to-cors.htm => testing/web-platform/tests/xhr/send-redirect-to-cors.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect-to-non-cors.htm => testing/web-platform/tests/xhr/send-redirect-to-non-cors.htm rename : testing/web-platform/tests/XMLHttpRequest/send-redirect.htm => testing/web-platform/tests/xhr/send-redirect.htm rename : testing/web-platform/tests/XMLHttpRequest/send-response-event-order.htm => testing/web-platform/tests/xhr/send-response-event-order.htm rename : testing/web-platform/tests/XMLHttpRequest/send-response-upload-event-loadend.htm => testing/web-platform/tests/xhr/send-response-upload-event-loadend.htm rename : testing/web-platform/tests/XMLHttpRequest/send-response-upload-event-loadstart.htm => testing/web-platform/tests/xhr/send-response-upload-event-loadstart.htm rename : testing/web-platform/tests/XMLHttpRequest/send-response-upload-event-progress.htm => testing/web-platform/tests/xhr/send-response-upload-event-progress.htm rename : testing/web-platform/tests/XMLHttpRequest/send-send.htm => testing/web-platform/tests/xhr/send-send.htm rename : testing/web-platform/tests/XMLHttpRequest/send-send.js => testing/web-platform/tests/xhr/send-send.js rename : testing/web-platform/tests/XMLHttpRequest/send-send.worker.js => testing/web-platform/tests/xhr/send-send.worker.js rename : testing/web-platform/tests/XMLHttpRequest/send-sync-blocks-async.htm => testing/web-platform/tests/xhr/send-sync-blocks-async.htm rename : testing/web-platform/tests/XMLHttpRequest/send-sync-no-response-event-load.htm => testing/web-platform/tests/xhr/send-sync-no-response-event-load.htm rename : testing/web-platform/tests/XMLHttpRequest/send-sync-no-response-event-loadend.htm => testing/web-platform/tests/xhr/send-sync-no-response-event-loadend.htm rename : testing/web-platform/tests/XMLHttpRequest/send-sync-no-response-event-order.htm => testing/web-platform/tests/xhr/send-sync-no-response-event-order.htm rename : testing/web-platform/tests/XMLHttpRequest/send-sync-response-event-order.htm => testing/web-platform/tests/xhr/send-sync-response-event-order.htm rename : testing/web-platform/tests/XMLHttpRequest/send-sync-timeout.htm => testing/web-platform/tests/xhr/send-sync-timeout.htm rename : testing/web-platform/tests/XMLHttpRequest/send-timeout-events.htm => testing/web-platform/tests/xhr/send-timeout-events.htm rename : testing/web-platform/tests/XMLHttpRequest/send-usp.any.js => testing/web-platform/tests/xhr/send-usp.any.js rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-after-send.htm => testing/web-platform/tests/xhr/setrequestheader-after-send.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-allow-empty-value.htm => testing/web-platform/tests/xhr/setrequestheader-allow-empty-value.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-allow-whitespace-in-value.htm => testing/web-platform/tests/xhr/setrequestheader-allow-whitespace-in-value.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-before-open.htm => testing/web-platform/tests/xhr/setrequestheader-before-open.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-bogus-name.htm => testing/web-platform/tests/xhr/setrequestheader-bogus-name.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-bogus-value.htm => testing/web-platform/tests/xhr/setrequestheader-bogus-value.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-case-insensitive.htm => testing/web-platform/tests/xhr/setrequestheader-case-insensitive.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-content-type.htm => testing/web-platform/tests/xhr/setrequestheader-content-type.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-header-allowed.htm => testing/web-platform/tests/xhr/setrequestheader-header-allowed.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-header-forbidden.htm => testing/web-platform/tests/xhr/setrequestheader-header-forbidden.htm rename : testing/web-platform/tests/XMLHttpRequest/setrequestheader-open-setrequestheader.htm => testing/web-platform/tests/xhr/setrequestheader-open-setrequestheader.htm rename : testing/web-platform/tests/XMLHttpRequest/status-async.htm => testing/web-platform/tests/xhr/status-async.htm rename : testing/web-platform/tests/XMLHttpRequest/status-basic.htm => testing/web-platform/tests/xhr/status-basic.htm rename : testing/web-platform/tests/XMLHttpRequest/status-error.htm => testing/web-platform/tests/xhr/status-error.htm rename : testing/web-platform/tests/XMLHttpRequest/template-element.html => testing/web-platform/tests/xhr/template-element.html rename : testing/web-platform/tests/XMLHttpRequest/timeout-cors-async.htm => testing/web-platform/tests/xhr/timeout-cors-async.htm rename : testing/web-platform/tests/XMLHttpRequest/timeout-sync.htm => testing/web-platform/tests/xhr/timeout-sync.htm rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-basic.htm => testing/web-platform/tests/xhr/xmlhttprequest-basic.htm rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-eventtarget.htm => testing/web-platform/tests/xhr/xmlhttprequest-eventtarget.htm rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-network-error-sync.htm => testing/web-platform/tests/xhr/xmlhttprequest-network-error-sync.htm rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-network-error.htm => testing/web-platform/tests/xhr/xmlhttprequest-network-error.htm rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-block-defer-scripts-subframe.html => testing/web-platform/tests/xhr/xmlhttprequest-sync-block-defer-scripts-subframe.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-block-defer-scripts.html => testing/web-platform/tests/xhr/xmlhttprequest-sync-block-defer-scripts.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-block-scripts.html => testing/web-platform/tests/xhr/xmlhttprequest-sync-block-scripts.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-not-hang-scriptloader-subframe.html => testing/web-platform/tests/xhr/xmlhttprequest-sync-not-hang-scriptloader-subframe.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-sync-not-hang-scriptloader.html => testing/web-platform/tests/xhr/xmlhttprequest-sync-not-hang-scriptloader.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-aborted.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-aborted.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-abortedonmain.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-abortedonmain.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-overrides.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-overrides.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-overridesexpires.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-overridesexpires.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-reused.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-reused.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-simple.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-simple.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-synconmain.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-synconmain.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-twice.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-twice.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-aborted.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-aborted.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-overrides.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-overrides.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-overridesexpires.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-overridesexpires.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-simple.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-simple.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-synconworker.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-synconworker.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-timeout-worker-twice.html => testing/web-platform/tests/xhr/xmlhttprequest-timeout-worker-twice.html rename : testing/web-platform/tests/XMLHttpRequest/xmlhttprequest-unsent.htm => testing/web-platform/tests/xhr/xmlhttprequest-unsent.htm |
|
Bas Schouten | a0d06a28fc | Bug 1432570: Add support for TRACING_EVENT type markers. r=mstange | |
Aki Sasaki | f8ee472c6f |
Bug 1431397 - part2: fix release_eta when it's None p=aki r=jlorenzo
--HG-- extra : source : c349de6dc73428fb8b09ff9f416e581dcfe9e05a extra : amend_source : 2bed7eb11b536b345fb8b30f2d47c85424024ae9 |
|
Yury Delendik | 0cc3f8ba82 |
Bug 1431864 - Use Response.url as WebAssembly module URL. r=bkelly,luke
MozReview-Commit-ID: 2xAasdmpIKX --HG-- extra : rebase_source : a4664e04930eda6dc1a4429be5b9a3c3467cd71b |