https://github.com/web-platform-tests/wpt

sort by:
Revision Author Date Message Commit Date
3f22183 Deliver PerformanceEntries when the main thread is idle. Previously, when we created a PerformanceEntry, we would post a task for it to be dispatched immediately. Now we deliver PerformanceEntries when the main thread is idle, or 100ms from when they are created, whichever comes first. Because loading related PerformanceEntries are latency sensitive, we currently do not delay them. Loading related PerformanceEntries force all PerformanceEntries to be dispatched immediately. Bug: 778359 Test: PerformanceBaseTest.* Change-Id: Iede70760c10d0c14d2d40797de44a951e8e674aa 24 November 2017, 18:49:58 UTC
3cbdbaa Update Acid3 for DOM exception simplification See http://www.w3.org/mid/CADnb78js2FtmdMBGtOEo=i+YMNa7OzWYiJc96qTM2YpQvG99MQ@mail.gmail.com Change comes from https://github.com/whatwg/dom/issues/319 24 November 2017, 16:18:07 UTC
e6f63a6 Update Acid3 for :first-child spec change See http://www.w3.org/mid/995a0241-135f-3bfb-b6da-80edcd6d307e@gmail.com 24 November 2017, 16:18:07 UTC
ce51140 Make sure trickle responses aren't cached (#6732) Occasionally, I've seen browsers decide to cache trickle responses; this obviously causes breakage as they then load instantly. 24 November 2017, 15:12:18 UTC
4a878d9 MessageEvent: origin and IDNA For https://github.com/whatwg/html/issues/2568. 24 November 2017, 14:48:16 UTC
3b1e8fa Delete vendor-prefix.js.headers (#8421) Left over from 4efe9f5bfe0eb84e3f131e7bb1d9bd91ad24c288 24 November 2017, 14:17:13 UTC
030bf9f Add @mstensho to OWNERS 24 November 2017, 14:00:32 UTC
df5090a Fix a spec link for css-break This was the cause of confusion in https://github.com/w3c/web-platform-tests/pull/8311. 24 November 2017, 14:00:32 UTC
840cd31 Fix to numbers-units-011 (#8099) Added 'line-height: 1' otherwise the second box is a half-leading lower than the box in the reference file, which is not inside a line box. 24 November 2017, 13:56:26 UTC
bc569d0 Use idlharness for WebDriver's interface 24 November 2017, 13:53:44 UTC
589f2e2 📝Editorial: Update resources/README.md (#8140) Improve prose for resources (i.e., `testharness.js`). I have been educating the community on the benefits of aligning testing with WPT. However, testharness is a little difficult to get head wrapped around from the feedback I am receiving. Also have recently been doing some prose updates in documentation over @ WHATWG. I am revisiting the WPT setup process and believe one should always leave code better than when they saw it. References: - https://github.com/whatwg/meta/issues/48 - (in particular) https://github.com/whatwg/meta/issues/48#issuecomment-342737876 24 November 2017, 13:32:46 UTC
895488f Revert "[mediacapture-fromelement] Support Firefox moz-prefixed implementation in tests (#6614)" This reverts commit cf876359e469cb67664f8a5dfd06056ec3a07650, reversing changes made to bb42139e15be87ea07347a9d6ec3bdc4a80a67d8. 24 November 2017, 12:43:13 UTC
6e1df92 webdriver: cause window.alert in document load to avoid user prompt handler (#8412) The tests are expecting that after execute_script() the dialog is still present and no error is returned. This can't happen according to the spec, because in case of user prompt in the middle of a script execution, the user prompt handler should be invoked. The result of the handler will depend on the unhandled prompt behavior, but in any case the result should be that either the dialog is no longer present (accept or dismiss) or unexpected alert error is returned. To avoid this, we could simply use the inline fixture to load a document containing the script, instead of using execute_script(). 23 November 2017, 14:41:32 UTC
7c00c3f Merge pull request #8303 from soareschen/addtransceiver-cleanup Clean up peer connection after each addTransceiver test 23 November 2017, 13:38:20 UTC
2a412bf Fix #8310: remove references to css/work-in-progress 23 November 2017, 10:03:44 UTC
1b13727 Fix some issues in geolocation-sensor(#8403) * Add GeolocationSensor constant declaration in generic-sensor-tests.js and add untest idl 'EventHandler' 23 November 2017, 02:56:33 UTC
0ae7760 Add generation for "ahem-mismatch.html" (#8396) 22 November 2017, 16:56:08 UTC
1433896 Removing foreign fetch tests (#7762) Reaction to: https://github.com/whatwg/html/pull/3233 https://github.com/w3c/ServiceWorker/pull/1207 22 November 2017, 14:17:46 UTC
68252d7 Consolidate navigation-timing tests into web-platform-tests LayoutTests/http/tests/w3c/webperf/approved/navigation-timing/ and LayoutTests/external/wpt/navigation-timing/ have the same origin but have diverged slightly over time. https://chromium-review.googlesource.com/c/chromium/src/+/782419 shows what the interesting differences between the two copies were. metadata_cache in most of the tests were removed when the tests were initially added to web-platform-tests: https://github.com/w3c/web-platform-tests/pull/181 idlharness.html: It's OK to no longer test an instance of Window, that's being done in the hr-time test: https://github.com/w3c/web-platform-tests/pull/8388 test_timing_xserver_redirect.html: The bits around pageOrigin were removed in https://github.com/w3c/web-platform-tests/commit/234a672d023e8f57f3c78ca129788ca650242cc0. That assert was still failing in our own tests, but removing it is OK, using location.hostname is wrong as it doesn't include the port: https://html.spec.whatwg.org/multipage/links.html#dom-hyperlink-hostname Change-Id: Ic5c4151a3e309fee1894c72cd14d159bd314be20 Reviewed-on: https://chromium-review.googlesource.com/781684 Commit-Queue: Philip Jägenstedt <foolip@chromium.org> Reviewed-by: Takeshi Yoshino <tyoshino@chromium.org> Cr-Commit-Position: refs/heads/master@{#518626} 22 November 2017, 14:11:01 UTC
3a10926 Use standalone hr-time.idl and test more instances window.performance is now tested as well. Workers are still not. 22 November 2017, 13:42:38 UTC
a3c2501 Change display:contents reference to avoid Blink text shaping bug. Split the PASS text of the reference into multiple inlines like the test does. The reference did not match in Blink because of a text shaping bug: https://crbug.com/6122 Bug: 657748, 6122 Change-Id: If9894d45415a8f9ada80c2912abbd552a181b423 Reviewed-on: https://chromium-review.googlesource.com/784933 Reviewed-by: Dominik Röttsches <drott@chromium.org> Commit-Queue: Rune Lillesveen <futhark@chromium.org> Cr-Commit-Position: refs/heads/master@{#518605} 22 November 2017, 11:57:32 UTC
4b9bbee Worklet: Clean up referrer tests This just cleans up referrer tests and doesn't change behavior. Bug: 773921 Change-Id: I790cb392d009792b469a1907c0f2e47da87a07b5 Reviewed-on: https://chromium-review.googlesource.com/784742 Reviewed-by: Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org> Cr-Commit-Position: refs/heads/master@{#518601} 22 November 2017, 11:07:32 UTC
263604f ES6 Modules: Fix referrer handling for module scripts Before this CL, ModuleScriptLoader::Fetch() sets the Referrer in ModuleScriptFetchRequest after creating a FetchParameters instance. This doesn't take effect. This CL fixes it by updating the Referrer via FetchParameters::MutableResourceRequest(). Also, this adds WPT tests for the Referrer on module scripts. Bug: 786862 Change-Id: Ib0031407796e1a7e701565094396e5442aa75702 Reviewed-on: https://chromium-review.googlesource.com/780479 Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org> Reviewed-by: Kouhei Ueno <kouhei@chromium.org> Reviewed-by: Takeshi Yoshino <tyoshino@chromium.org> Cr-Commit-Position: refs/heads/master@{#518591} 22 November 2017, 10:35:54 UTC
17c5c5d Verify WritableStream behaviour when both parts of strategy are bad (#8353) When both the size and highWaterMark parts of the strategy are bad, a TypeError should be thrown indicating that the size function was checked first. Verify that it is. 22 November 2017, 09:57:17 UTC
024fb49 Quota API: Ensure that multiple queries can be made in parallel A bug in a recent WIP CL caused multiple IPC messages to be sent with the same ID, but this was not caught by tests since tests only exercised messages serially. Fill that gap in our test coverage. Change-Id: I764fc7c41b1409fa6bf4a537ef2b64d7176afd3e Reviewed-on: https://chromium-review.googlesource.com/783520 Reviewed-by: Sasha Morrissey <sashab@chromium.org> Commit-Queue: Joshua Bell <jsbell@chromium.org> Cr-Commit-Position: refs/heads/master@{#518479} 22 November 2017, 01:21:26 UTC
60dc898 Remove Microsoft Edge browser sniff in test case (#8394) Service worker in Microsoft Edge supports MessagePorts. 21 November 2017, 18:55:46 UTC
5057b5e Merge pull request #8063 from gsnedders/webidl2-update-20171103 Update webidl2.js to v8.1.0 21 November 2017, 18:03:09 UTC
b40481b Remove outdated/duplicated IDL from CSP reporting API 21 November 2017, 18:00:46 UTC
372116a Update HTMLAllCollection definition in html.idl Without this change, the WebIDL2.js update breaks everything that relies on html.idl as a result of `legacycaller` being dropped from both the spec and the implementation. 21 November 2017, 18:00:46 UTC
1c88342 Hook WebAuthN to //device/u2f to perform credential registration. This change implements the browser-side of authenticator.mojom to build and send a U2F-style request to //device/u2f to talk to a hardware authenticator. This also adds a utility class to map the u2f response from U2fDevice to a CTAP response per the FIDO2 and WebAuthN specs. Bug: 664630 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation Change-Id: I7d5f9e2308c45fdd8ca9463a8a78c2f88d9aeb80 Reviewed-on: https://chromium-review.googlesource.com/710516 Reviewed-by: Jochen Eisinger <jochen@chromium.org> Reviewed-by: Mike West <mkwst@chromium.org> Reviewed-by: Reilly Grant <reillyg@chromium.org> Reviewed-by: Balazs Engedy <engedy@chromium.org> Commit-Queue: Kim Paulhamus <kpaulhamus@chromium.org> Cr-Commit-Position: refs/heads/master@{#518277} 21 November 2017, 17:09:09 UTC
0dce5a1 I no longer own all of css/ 21 November 2017, 16:40:53 UTC
c6c108e Modified the report-uri logic to not respect base elements When a relative URL is specified for report-uri, we should not respect any base elements. Spec: https://w3c.github.io/webappsec-csp/#report-violation Bug: 777350 Change-Id: I1ca513d056047bcbe71f5faaefcd800d9f70363e Reviewed-on: https://chromium-review.googlesource.com/748321 Reviewed-by: Mike West <mkwst@chromium.org> Commit-Queue: Andy Paicu <andypaicu@chromium.org> Cr-Commit-Position: refs/heads/master@{#518260} 21 November 2017, 15:52:39 UTC
413c4a9 Fixed bug where PlzNavigate CSP in a iframe did not get the inherited CSP When inheriting the CSP from a parent document to a local-scheme CSP, it does not always get propagated to the PlzNavigate CSP. This means that PlzNavigate CSP checks (like `frame-src`) would be ran against a blank policy instead of the proper inherited policy. Bug: 778658 Change-Id: I61bb0d432e1cea52f199e855624cb7b3078f56a9 Reviewed-on: https://chromium-review.googlesource.com/765969 Commit-Queue: Andy Paicu <andypaicu@chromium.org> Reviewed-by: Mike West <mkwst@chromium.org> Cr-Commit-Position: refs/heads/master@{#518245} 21 November 2017, 15:23:37 UTC
93f495e Add one missing checkpoint (#8386) `createRequest()` should return `wakeLockRequest` 21 November 2017, 10:33:09 UTC
efb6502 add test for input overflow text preserved (#8080) per discussion in https://github.com/w3c/csswg-drafts/issues/1941 21 November 2017, 10:22:35 UTC
82544df Add event.composedPath() test Add a test for the change of DOM Standard. See https://github.com/whatwg/dom/pull/535 for details. Change-Id: I725fc9e08ca72b5e1e083a67276decf0cdd8bfc8 Reviewed-on: https://chromium-review.googlesource.com/781303 Reviewed-by: Takayoshi Kochi <kochi@chromium.org> Commit-Queue: Hayato Ito <hayato@chromium.org> Cr-Commit-Position: refs/heads/master@{#518178} 21 November 2017, 08:39:51 UTC
9c14bbe Optimized generic sensor cases by using promise_test and EventWatcher (#8277) 21 November 2017, 05:00:55 UTC
c16fbd4 Link rel=modulepreload: Support integrity attribute This CL enables subresource integrity check for link rel=modulepreload, by passing integrity value to ScriptFetchOptions. Note that this is only for modulepreload; integrity is still not supported for link rel=preload (crbug.com/677022). Bug: 740886 Change-Id: I09159ed802e49b402e71ff464dee56a380a73b07 Reviewed-on: https://chromium-review.googlesource.com/773719 Reviewed-by: Kinuko Yasuda <kinuko@chromium.org> Reviewed-by: Kouhei Ueno <kouhei@chromium.org> Commit-Queue: Kunihiko Sakamoto <ksakamoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#518037} 21 November 2017, 01:54:38 UTC
efe909a Add functional tests for Geolocation Sensor (#8276) and add @Honry as owner 21 November 2017, 01:46:04 UTC
a461ad3 Merge pull request #8352 from soareschen/webrtc-lint Add lint tools to WebRTC and fix lint errors 21 November 2017, 01:45:07 UTC
b6e841a [css-grid] Aboslute positioned items don't participate in baseline align The Grid Layout spec states that absolute positioned items doesn't participate in the grid layout and should not affect any other item's placement. Even though this behavior is described in the Grid spec, the statement is too ambiguous, so I've filed an issue in the W3C github asking for a specific description of the 'baseline' value for absolute positioned elements in the CSS Box Alignment spec. https://github.com/w3c/csswg-drafts/issues/1999 Bug: 786781 Change-Id: I87e5c4a099ad60e7172e8f448356fd482adb26ec Reviewed-on: https://chromium-review.googlesource.com/779419 Commit-Queue: Javier Fernandez <jfernandez@igalia.com> Reviewed-by: Manuel Rego Casasnovas <rego@igalia.com> Cr-Commit-Position: refs/heads/master@{#517974} 20 November 2017, 23:23:10 UTC
53bbb15 Merge more numbered CSS directories into the unnumbered ones These are from these Gecko exports: https://github.com/w3c/web-platform-tests/pull/8319 https://github.com/w3c/web-platform-tests/pull/8335 Also pacify the lint with a spec link. Part of https://github.com/w3c/web-platform-tests/issues/7503. 20 November 2017, 22:30:46 UTC
3ccb110 Added tests for flex items inside display:contents. Test that a flex container with generated text content for ::before and ::after elements with display:contents end up in the same flex item. Works as expected in WebKit, not in Gecko nor Blink. Bug: 755956 Change-Id: I1db2769be8704f2a6ef540b115e99fe2929dc02f Reviewed-on: https://chromium-review.googlesource.com/776659 Commit-Queue: Christian Biesinger <cbiesinger@chromium.org> Reviewed-by: Christian Biesinger <cbiesinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#517921} 20 November 2017, 21:48:10 UTC
46fcb43 Credential Management: Remove blanket restriction on nested contexts. https://github.com/w3c/webappsec-credential-management/pull/114 shifts the restriction on nested usage of `navigator.credentials.{get,store}` from a complete prohibition to one which applies more narrowly to `PasswordCredential` and `FederatedCredential`. This patch aligns Blink's behavior with the spec: 1. The nested-context restriction applies only to `get()` and `store()` operations that request `password` or `federated` credential types. `preventSilentAccess()` and `create()` can be called anywhere. 2. Nested contexts that are same-origin with all of their ancestors are carved out from the exclusion above. So, `example.com` embedded in `not-example.com` will trigger a rejection, while `example.com` embedded in `example.com` will not. 3. Nested usage triggers a `NotAllowedError` as opposed to the current `SecurityError`. Bug: 785172 Change-Id: If0e75d7b84e91ed7f0eaf1220e90a1c307a85312 Reviewed-on: https://chromium-review.googlesource.com/771190 Commit-Queue: Mike West <mkwst@chromium.org> Reviewed-by: Dominic Battré <battre@chromium.org> Cr-Commit-Position: refs/heads/master@{#517824} 20 November 2017, 18:58:53 UTC
c817c91 Remove the documentation around css/work-in-progress/ (#8309) Follow-up to https://github.com/w3c/web-platform-tests/issues/7453. 20 November 2017, 16:55:19 UTC
149bc26 Removing unneeded initial capabilities for IE (#8157) 20 November 2017, 15:51:27 UTC
9ec683d Merge pull request #8351 from w3c/sync_fa27b785c62e67cc3a12201612db188c4fdd49ad Add a --verify-log-full option to wpt; 20 November 2017, 14:24:15 UTC
4479ab5 Merge pull request #8350 from w3c/sync_4a582d57b2fe3648069e61a6f2064c3cd6a931f8 Web-platform logging changes for proper structured logging in test verification; 20 November 2017, 14:23:27 UTC
dd6a3ec Merge pull request #8349 from w3c/sync_c12908f9bf5e7ffaad478b266a2b329049fe04a4 Update the titles of a couple of test files that test part of the "The effect value of a keyframe effect" section of the spec; 20 November 2017, 14:23:13 UTC
c3a5a3b Merge pull request #8348 from w3c/sync_fb7ea66f770febc34145be5a4d91fb320caeac3c Update test descriptions for iterationComposite.html and effect-value-iteration-composite-operation.html; 20 November 2017, 14:22:25 UTC
87d59e6 Merge pull request #8347 from w3c/sync_062517ef3c87ac73acf3ef98ff4c53f3bd8996e2 Split most of iterationComposite.html out into animation-model; 20 November 2017, 14:22:11 UTC
1ff2edb Merge pull request #8346 from w3c/sync_e22b39dadf73699ef2b57e5fbbf3c50e42da6c44 Simplify getComputedTiming.html test somewhat; 20 November 2017, 14:21:24 UTC
9668ad0 Merge pull request #8345 from w3c/sync_f8e26599adbd9b3a248dec4efee396f149c8b786 Move getComputedTiming test to AnimationEffectTiming; 20 November 2017, 14:21:10 UTC
d97f6c2 Add lint tools to WebRTC and fix lint errors 20 November 2017, 14:20:48 UTC
5e15308 Merge pull request #8344 from w3c/sync_597945788f20f02cc59004ce622a10a2c2ad003d Take iframe sandboxing into account for <noscript> parsing. 20 November 2017, 14:20:29 UTC
462212b Merge pull request #8343 from w3c/sync_34565dc4fd5c10b3e12838d6dfb2ca7a7d800ee9 Use for...of instead of forEach in web-platform-tests/web-animations; 20 November 2017, 14:20:15 UTC
766fe1d Merge pull request #8342 from w3c/sync_968653c898def1fd16a3540dc7f14017bca0fb4b Consistently use strict mode in web-platform-tests/web-animations; 20 November 2017, 14:19:28 UTC
05625bc Merge pull request #8341 from w3c/sync_efa85c4951ed6e45e76aa802b80e8e560623162c Use template literals in a few places in web-platform-tests/web-animations; 20 November 2017, 14:19:14 UTC
957cad4 Merge pull request #8340 from w3c/sync_8383d18cac5453814fe97468ff4b4ca39ec091d3 Consistently use single quotes for string literals in web-platform-tests/web-animations; 20 November 2017, 14:18:26 UTC
7df32ae Merge pull request #8339 from w3c/sync_680ea46bb437c2c26ef80a3bafe6fd099fd0a79c Replace var with const/let in web-platform-tests/web-animations; 20 November 2017, 14:18:13 UTC
12a3301 Merge pull request #8338 from w3c/sync_b2987e19538b0a7b6ac37dde2fe6ce5ddee1bf19 Use arrow functions in web-platform-tests/web-animations; 20 November 2017, 14:17:25 UTC
228b0ec Merge pull request #8337 from w3c/sync_e1f2d9107ecde3170b4612585b6b9d4bb907e961 Do not fail when a skipped web-platform test is verified; 20 November 2017, 14:17:11 UTC
8574d3c Merge pull request #8336 from w3c/sync_ee451d50ff6390e137832804c045eda2d49b12fc Change tests of calc in media-queries so that the root element style has been resolved first. 20 November 2017, 14:16:31 UTC
c26dfb2 Merge pull request #8335 from w3c/sync_87b5adf7262afdec60500ba336d0e3aedb894f25 Test that font-variant-alternates: historical-forms is parsed case-insensitively. 20 November 2017, 14:16:18 UTC
1b0889a Merge pull request #8334 from w3c/sync_70652922c3b8dfe6096eb8f98d23f23f61643b61 P2 Add a WPT test to verify we report workerStart on cross-origin no-cors requests, like <img>. 20 November 2017, 14:15:36 UTC
526f1ff Merge pull request #8333 from w3c/sync_a36f2371582e27f1235c9479f9eef3bc72401f20 Move tests from AnimationEffectTiming/getAnimations.html to Animatable/getAnimations.html; 20 November 2017, 14:15:22 UTC
a449353 Merge pull request #8332 from w3c/sync_0af2a0367177a61678ae349fb7c1821186084e74 Update test descriptions in interfaces/Animatable/getAnimations.html; 20 November 2017, 14:14:34 UTC
cc64c65 Merge pull request #8331 from w3c/sync_a8861aeefa2dd132257a1bf2c1e8155fc1802f61 Drop getComputedStyle.html test in interfaces/AnimationEffectTiming; 20 November 2017, 14:14:19 UTC
7f54852 Merge pull request #8330 from w3c/sync_5396e3df90a54066e8d4621f6c3f29627ae957f4 Tidy up test descriptions for AnimationEffectTiming tests; 20 November 2017, 14:13:38 UTC
df68c7e Merge pull request #8329 from w3c/sync_ae95e5155b2f4f45e67bbeb3d2308330b6e11e09 Rename discrete-animation.html test file to discrete.html; 20 November 2017, 14:13:25 UTC
f05dd34 Merge pull request #8328 from w3c/sync_fcbd93e1ce90855c084f95c45c6d9b4d6bb20f5a Move the tests for the type of the 'visibility' property to the animation-types section; 20 November 2017, 14:13:11 UTC
d6b4f63 Merge pull request #8327 from w3c/sync_72b908ac4960d42dd35740bb332a57ea03834981 Rename setTarget.html to target.html; 20 November 2017, 14:12:31 UTC
654fa0a Merge pull request #8326 from w3c/sync_c804097576f705d8912bd8e64abecde354b80629 Tidy up titles of Web Animations web-platform-tests; 20 November 2017, 14:12:18 UTC
757c9cd Merge pull request #8325 from w3c/sync_448984b0e1c5bad4af20abeaf84eb8b5e8e81478 Test webdriver actions keyboard shortcuts; 20 November 2017, 14:11:28 UTC
64a4462 Merge pull request #8324 from w3c/sync_b151417f92676d9e9f842be55f019b6a44cc2623 Part5 - Fix cross origin test failure. r=bz,jgraham 20 November 2017, 14:11:14 UTC
1bab31a Merge pull request #8323 from w3c/sync_85f088f444f64584722c2c584023651e7dac81cd Part2 - Change the file extension from .html to .https.html. 20 November 2017, 14:10:31 UTC
7ec0c6c Merge pull request #8322 from w3c/sync_890bf825f4fccb3f038be53e0b19bdaaa68e87b7 Allow skipping web-paltform-tests that timeout, 20 November 2017, 14:10:18 UTC
b1e82f1 Merge pull request #8321 from w3c/sync_16a0446867e17d76e695afe676201272d05286d0 Increase timeout for tone events in RTCDTMFSender-helper.js; 20 November 2017, 14:09:41 UTC
142eae0 Merge pull request #8320 from w3c/sync_1712dccb5fea6792e3921fcfe25b16d6b5b83f41 Make add cookie command webdriver spec comformant r=ato,whimboo 20 November 2017, 14:09:28 UTC
c2c8136 Merge pull request #8319 from w3c/sync_df0768cf8e32fc213b3100465e58d6a9d63e6107 Fix insertion point computation when display: contents pseudos are involved. r=mats,bz 20 November 2017, 14:09:13 UTC
070a4fc Merge pull request #8318 from w3c/sync_816892432a1a6996c7c94f2b97ca7fb85a0f6e5b Test for stale elements when clicking 20 November 2017, 14:08:26 UTC
cae08e3 Merge pull request #8317 from w3c/sync_6e06772e30ad4cd213c33611be23e40963f6048b Fix HTTP status for stale element reference error 20 November 2017, 14:08:12 UTC
008ee7c Merge pull request #8316 from w3c/sync_6bc5957de800ec39219454d92d686e90d1c0edc9 Fix API docs for assert_error and assert_success 20 November 2017, 14:07:39 UTC
374e73d Merge pull request #8315 from w3c/sync_8723978eef1642f1a61d2d95640000c471f6beb8 Fix NameError for cls_name 20 November 2017, 14:07:25 UTC
2514366 Merge pull request #8314 from w3c/sync_2d5844ca9c1cb9a75b28cd930990fd6bf0a99b38 Marionette executor has to use raise_for_port. r=ato,jgraham 20 November 2017, 14:07:11 UTC
d88bb2e Merge pull request #8313 from w3c/sync_c843f5addf0ac2a6c1fc053d226352abc73d16be Fix error code for InvalidElementStateException 20 November 2017, 14:06:55 UTC
062517e Split most of iterationComposite.html out into animation-model; Most of the tests in this file are just testing the application of the iteration composite operation (as opposed to testing the IDL) and so belong in the animation model section. MozReview-Commit-ID: 9q3caZHjIJW Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1417808 [ci skip] 20 November 2017, 14:06:45 UTC
4a582d5 Web-platform logging changes for proper structured logging in test verification; Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1413729 [ci skip] 20 November 2017, 14:06:45 UTC
5979457 Take iframe sandboxing into account for <noscript> parsing. MozReview-Commit-ID: GTUCSQq5aDm Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1417494 [ci skip] 20 November 2017, 14:06:45 UTC
c12908f Update the titles of a couple of test files that test part of the "The effect value of a keyframe effect" section of the spec; This makes them consistent with the other two test files in this directory that begin with effect-value-... - The effect value of a keyframe effect: Property values that depend on their context (target element) - The effect value of a keyframe effect: Applying the iteration composite operation MozReview-Commit-ID: B8pgUPEw9Vq Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1417808 [ci skip] 20 November 2017, 14:06:45 UTC
e22b39d Simplify getComputedTiming.html test somewhat; This test doesn't actually need a target element or keyframes since it is only testing timing. Furthermore, we generally prefer to test KeyframeEffect over KeyframeEffectReadOnly so this patch also changes to using the KeyframeEffect constructor. Many of the other tests in this folder could be similarly simplified in the future. MozReview-Commit-ID: GDwsgRCEpw1 Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1417808 [ci skip] 20 November 2017, 14:06:45 UTC
f8e2659 Move getComputedTiming test to AnimationEffectTiming; MozReview-Commit-ID: J2ByEQJWv3w Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1417808 [ci skip] 20 November 2017, 14:06:45 UTC
fa27b78 Add a --verify-log-full option to wpt; This passes all the logging to the output, which makes it rather verbose, but also ensures we get the full set of test results Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1413729 [ci skip] 20 November 2017, 14:06:45 UTC
fb7ea66 Update test descriptions for iterationComposite.html and effect-value-iteration-composite-operation.html; These updated test descriptions should slightly better reflect the section of the spec they are testing. MozReview-Commit-ID: Dut5hUMZFog Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1417808 [ci skip] 20 November 2017, 14:06:45 UTC
0af2a03 Update test descriptions in interfaces/Animatable/getAnimations.html; We plan to merge in tests here from AnimationEffectTiming/getAnimations.html so in this patch we update the test descriptions first. Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1415448 [ci skip] 20 November 2017, 14:06:44 UTC
34565dc Use for...of instead of forEach in web-platform-tests/web-animations; MozReview-Commit-ID: CEMNCSEmpgr Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1415448 [ci skip] 20 November 2017, 14:06:44 UTC
5396e3d Tidy up test descriptions for AnimationEffectTiming tests; The test descriptions should generally be testable statements. I'm following the convention of BDD-style naming where the subject is implied (e.g. 'Has the default value 0' should be read as '<test subject> has the default value 0'). Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1415448 [ci skip] 20 November 2017, 14:06:44 UTC
680ea46 Replace var with const/let in web-platform-tests/web-animations; Because 'const' is longer than 'var', in quite a number of places this patch also updates the indentation of subsequent lines. Also, in a number of cases this means the line now needs to be wrapped. In general I've used 'prettier' to do the line wrapping which means that the line wrapping style differs a little from the existing code (which is already quite inconsistent). Hopefully in the future we can use prettier on all files to make this more consistent. Also, in some cases, to avoid further line wrapping, this patch uses shorthand property names (specifically replacing 'composite: composite' with just 'composite'). This appears to be supported in all browsers like to implement Web Animations (Firefox 33+, Chrome 47+, Edge, Safari 9+). MozReview-Commit-ID: 2xEaeZSYjlc Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1415448 [ci skip] 20 November 2017, 14:06:44 UTC
7065292 P2 Add a WPT test to verify we report workerStart on cross-origin no-cors requests, like <img>. Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1415740 [ci skip] 20 November 2017, 14:06:44 UTC
8383d18 Consistently use single quotes for string literals in web-platform-tests/web-animations; We will introduce template literals in the next patch in this series. MozReview-Commit-ID: H0cF0SjI1U5 Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1415448 [ci skip] 20 November 2017, 14:06:44 UTC
back to top