Commit Graph

603480 Commits

Author SHA1 Message Date
Luke Bjerring
308787479b Bug 1473126 [wpt PR 9815] - Update the push-api IDL file, a=testonly
Automatic update from web-platform-testsUpdate the push-api IDL file (#9815)

--

wpt-commits: 5bb78f0ae6a5577da7f93b65587b607b21d21494
wpt-pr: 9815
2018-07-11 07:58:01 +01:00
moz-wptsync-bot
2f965362c8 Bug 1470231 [wpt PR 11611] - Update wpt metadata, a=testonly
wpt-pr: 11611
wpt-type: metadata
2018-07-11 07:57:58 +01:00
Anders Hartvoll Ruud
bf87e037bb Bug 1470231 [wpt PR 11611] - Correctly resolve relative URLs for registered custom properties., a=testonly
Automatic update from web-platform-testsCorrectly resolve relative URLs for registered custom properties.

Relative URLs in registered custom properties must resolve against the
base URL of the originating stylesheet. For instance, consider a style-
sheet at /style/mystyle.css:

  --foo: url("myimage.jpg");

And a document at /index.html:

  <style>
    background-image: var(--foo);
  </style>

If the property --foo is registered with syntax <url>, then the background-
image should be /style/myimage.jpg.

This is contrary to non-registered properties, in which case the
background-image would be /myimage.jpg.

To implement this, this patch scans for URL tokens and 'url('-function
tokens after (var-)resolving the registered custom property
(see CSSVariableResolver::ResolveCustomProperty). The token containing
the relative URL is then rewritten (in-place) to contain an absolute URL
instead.

To avoid doing unnecessary work, we only scan the token stream if

CSSVariableData::needs_variable_resolution_ is set. This is set either
if needs_url_resolution_ is set (because var-references could produce
relative URLs), or if the token stream contains URL/function-tokens.
When a resolved CSSVariableData is created (::CreateResolved), it is
assumed that the incoming token stream contains no URLs that need to be
resolved.

R=futhark@chromium.org, timloh@chromium.org

Bug: 851490
Change-Id: I25b1e839fc92eb538f30670fe91fc92a1ad9d5ea
Reviewed-on: https://chromium-review.googlesource.com/1109975
Commit-Queue: Anders Ruud <andruud@chromium.org>
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569663}

--

wpt-commits: 372c7ad36a7e42a89228aa2bb88b35da5f519fa5
wpt-pr: 11611
2018-07-11 07:57:56 +01:00
moz-wptsync-bot
098cc69a6c Bug 1470399 [wpt PR 11622] - Update wpt metadata, a=testonly
wpt-pr: 11622
wpt-type: metadata
2018-07-11 07:57:53 +01:00
Manuel Rego Casasnovas
44b15c0f6b Bug 1470399 [wpt PR 11622] - [css-contain] Size containment replaced elements intrinsic size is zero, a=testonly
Automatic update from web-platform-tests[css-contain] Size containment replaced elements intrinsic size is zero

The spec is very clear about this
(https://drafts.csswg.org/css-contain/#containment-size):
  "Replaced elements must be treated as having an intrinsic width
   and height of 0."

The patch modifies LayoutReplaced::ComputeIntrinsicSizingInfo()
so that it returns zero for elements with "contain: size".

BUG=853441
TEST=external/wpt/css/css-contain/contain-size-013.html

Change-Id: I91490b120a110be20a91d564da4fdc3d9a11b70a
Reviewed-on: https://chromium-review.googlesource.com/1110819
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Commit-Queue: Manuel Rego Casasnovas <rego@igalia.com>
Cr-Commit-Position: refs/heads/master@{#569610}

--

wpt-commits: 46c8d39a9fde254df3398c681fd724990d289892
wpt-pr: 11622
2018-07-11 07:57:52 +01:00
moz-wptsync-bot
df2493e2e2 Bug 1468173 [wpt PR 11457] - Update wpt metadata, a=testonly
wpt-pr: 11457
wpt-type: metadata


--HG--
rename : testing/web-platform/meta/content-security-policy/unsafe-hashed-attributes/script_event_handlers_allowed.html.ini => testing/web-platform/meta/content-security-policy/unsafe-hashes/script_event_handlers_allowed.html.ini
2018-07-11 07:57:49 +01:00
Andy Paicu
78158bf60d Bug 1468173 [wpt PR 11457] - Completed 'unsafe-hashes' per spec, a=testonly
Automatic update from web-platform-testsCompleted 'unsafe-hashes' per spec

'unsafe-hashed-attributes' renamed to 'unsafe-hashes'
'unsafe-hashes' matches style attributes correctly now
'unsafe-hashes' works for javascript: URLs
'unsafe-hashes' tests added and ammended

spec (approved and to be submitted at the same time as this CR):
https://github.com/w3c/webappsec-csp/pull/311

I2I: https://groups.google.com/a/chromium.org/d/msg/blink-dev/4dohVXDfEI4/tO6rhuv4AwAJ

Bug: 771922
Change-Id: I018cc0f73d492cb4057ff4c41d9be4df8438036c
Reviewed-on: https://chromium-review.googlesource.com/1095217
Reviewed-by: Mike West <mkwst@chromium.org>
Commit-Queue: Andy Paicu <andypaicu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569593}

--

wpt-commits: fb04aed6ac840bd35178406583af6da6759c3566
wpt-pr: 11457
2018-07-11 07:57:47 +01:00
Eric Willigers
cc82d50ff2 Bug 1470255 [wpt PR 11612] - [compositing] Parsing of compositing properties, a=testonly
Automatic update from web-platform-testsMerge pull request #11612 from ewilligers/compositing-parsing

[compositing] Parsing of compositing properties
--

wpt-commits: 9cc6eb1151382b030f79f15057ce3d7052e98e8c
wpt-pr: 11612
2018-07-11 07:57:44 +01:00
Mike West
7407d57594 Bug 1470137 [wpt PR 11605] - Sec-Metadata: Strings are quoted in structured headers., a=testonly
Automatic update from web-platform-testsSec-Metadata: Strings are quoted in structured headers.

So this patch adds quotes.

See https://tools.ietf.org/html/draft-ietf-httpbis-header-structure-06#section-3.7
and 98f7c1253e.

Bug: 843478
Change-Id: I29dfa3a87e3c65a1b64009e173faa6d0f41b40f4
Reviewed-on: https://chromium-review.googlesource.com/1109819
Commit-Queue: Mike West <mkwst@chromium.org>
Reviewed-by: Camille Lamy <clamy@chromium.org>
Reviewed-by: Andy Paicu <andypaicu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569554}

--

wpt-commits: d6020b4e6f97afaa89624f316611061673eb3f53
wpt-pr: 11605
2018-07-11 07:57:41 +01:00
moz-wptsync-bot
2d17fe34f2 Bug 1467745 [wpt PR 11403] - Update wpt metadata, a=testonly
wpt-pr: 11403
wpt-type: metadata
2018-07-11 07:57:38 +01:00
Simon Pieters
63017bb760 Bug 1467745 [wpt PR 11403] - [testharness.js] Get title from the filename if not given, a=testonly
Automatic update from web-platform-tests[testharness.js] Get title from the filename or a META comment if not given (#11403)

--

wpt-commits: f777ec99a11d0d0522e691a8dab93c70d70941f3
wpt-pr: 11403
2018-07-11 07:57:36 +01:00
Matt Falkenhagen
94761ffc6c Bug 1470388 [wpt PR 11620] - WPT: Add long timeout to service-worker/navigation-redirect.https.html test., a=testonly
Automatic update from web-platform-testsWPT: Add long timeout to service-worker/navigation-redirect.https.html test.

This test is slow because it does a lot of navigations.

Bug: 854913
Change-Id: I2b5f984ba4b656af0d735b3c2c14952fdac5867b
Reviewed-on: https://chromium-review.googlesource.com/1111493
Commit-Queue: Matt Falkenhagen <falken@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569544}

--

wpt-commits: 91c59efbec2e393f48c9983b5c84acc1aa55efd5
wpt-pr: 11620
2018-07-11 07:57:33 +01:00
Florian Rivoal
e6c359ebe2 Bug 1473870 [wpt PR 11619] - [css-ui] Fix paths to work in testharness & css built test suites, a=testonly
Automatic update from web-platform-testsMerge pull request #11619 from frivoal/css-ui-11598

[css-ui] Fix paths to work in testharness & css built test suites
--

wpt-commits: 7d60038cac3d6104be86868a62892e8d1968ddc0
wpt-pr: 11619


--HG--
rename : testing/web-platform/tests/css/css-ui/parsing/resources/parsing-testcommon.js => testing/web-platform/tests/css/css-ui/parsing/support/parsing-testcommon.js
2018-07-11 07:57:30 +01:00
moz-wptsync-bot
31b4e54089 Bug 1473122 [wpt PR 9762] - Update wpt metadata, a=testonly
wpt-pr: 9762
wpt-type: metadata
2018-07-11 07:57:27 +01:00
Luke Bjerring
65e06c5f3f Bug 1473122 [wpt PR 9762] - Update the beacon IDL file, a=testonly
Automatic update from web-platform-testsUpdate the beacon IDL file (#9762)

--

wpt-commits: 19c8f4488e2f2b2838b4890bfbf5c662a68616f2
wpt-pr: 9762
2018-07-11 07:57:25 +01:00
Philip Jägenstedt
4017a6a2b2 Bug 1470104 [wpt PR 11602] - Remove @manta12 from scroll-animations/META.yml, a=testonly
Automatic update from web-platform-testsRemove @manta12 from scroll-animations/META.yml (#11602)

Per https://github.com/web-platform-tests/wpt/pull/9828#discussion_r196975564.
--

wpt-commits: 920152c5b30a12bc3aac3783e886ddaf997756c3
wpt-pr: 11602
2018-07-11 07:57:22 +01:00
Joshua Bell
691524cf64 Bug 1470354 [wpt PR 11614] - Prevent abort error from breaking test in FF (fixes #10792), a=testonly
Automatic update from web-platform-testsPrevent abort error from breaking test in FF (fixes #10792)

--

wpt-commits: bbe3411e20381f494983c3acf359bb9fdcaaa16d
wpt-pr: 11614
2018-07-11 07:57:19 +01:00
Chris Lilley
4974c0758e Bug 1460217 [wpt PR 10913] - Add basic tests for context fill and stroke., a=testonly
Automatic update from web-platform-testsMerge pull request #10913 from Tavmjong/paint-context

Add basic tests for context fill and stroke.
--

wpt-commits: e3173905464f0afb36163fa271ff01957eedec7c
wpt-pr: 10913
2018-07-11 07:57:15 +01:00
moz-wptsync-bot
153bf3b1d4 Bug 1473115 [wpt PR 9778] - Update wpt metadata, a=testonly
wpt-pr: 9778
wpt-type: metadata
2018-07-11 07:57:12 +01:00
Luke Bjerring
cdb1c5705a Bug 1473115 [wpt PR 9778] - Update the orientation-event IDL file, a=testonly
Automatic update from web-platform-testsUpdate the orientation-event IDL file (#9778)

--

wpt-commits: 5ec42d40b2a49310976996ed6d0d316b82571a3f
wpt-pr: 9778
2018-07-11 07:57:10 +01:00
Simon Pieters
bca3d99f93 Bug 1470218 [wpt PR 11610] - [docs] Document subsetTestByKey() utility function, a=testonly
Automatic update from web-platform-tests[docs] Document subsetTestByKey() utility function (#11610)

Added in https://github.com/web-platform-tests/wpt/pull/11414
--

wpt-commits: 973012935e322f9238878a0246ea9937a68c37b6
wpt-pr: 11610
2018-07-11 07:57:07 +01:00
moz-wptsync-bot
e8936c4067 Bug 1468735 [wpt PR 11506] - Update wpt metadata, a=testonly
wpt-pr: 11506
wpt-type: metadata
2018-07-11 07:57:04 +01:00
Guido Urdaneta
9b1da98d41 Bug 1468735 [wpt PR 11506] - Support all constrainable properties for audio tracks in MediaStreamTrack.getSettings()., a=testonly
Automatic update from web-platform-testsSupport all constrainable properties for audio tracks in MediaStreamTrack.getSettings().

Intent to Ship thread:
https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/wJwVSo52Dno/CjrUTTuyBAAJ

Bug: 731170
Change-Id: I53274b2bf5a622cb50d4b59f521bf56160172b61
Reviewed-on: https://chromium-review.googlesource.com/1100884
Commit-Queue: Guido Urdaneta <guidou@chromium.org>
Reviewed-by: Harald Alvestrand <hta@chromium.org>
Reviewed-by: Philip Jägenstedt <foolip@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569288}

--

wpt-commits: 337c1323d6e29422dca5b1caf6233d0b0f040a3a
wpt-pr: 11506
2018-07-11 07:57:02 +01:00
Raymond Toy
698e496919 Bug 1469749 [wpt PR 11580] - Remove unneeded WebAudio IDL tests, a=testonly
Automatic update from web-platform-testsRemove unneeded WebAudio IDL tests

The IDL tests in the subdirectories aren't really needed anymore since
we have webaudio/idlharness.https.html that covers everything in the
individual tests.

Bug: 854220
Change-Id: I589f4972922dfc15c475ce20e7c4cb664b529920
Reviewed-on: https://chromium-review.googlesource.com/1107120
Reviewed-by: Hongchan Choi <hongchan@chromium.org>
Commit-Queue: Raymond Toy <rtoy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569280}

--

wpt-commits: 1e174dd99ca9c17829565042d276ba477de5b6bc
wpt-pr: 11580
2018-07-11 07:56:59 +01:00
Luke Bjerring
b2f6a64643 Bug 1473111 [wpt PR 9832] - Update the shape-detection-api IDL file, a=testonly
Automatic update from web-platform-testsAdd the shape-detection-api IDL file and test (#9832)

--

wpt-commits: 3f54c291ef98b8657ac772b04822460865cd6e7e
wpt-pr: 9832
2018-07-11 07:56:56 +01:00
Luke Bjerring
56406a9ec8 Bug 1473109 [wpt PR 9814] - Update the presentation-api IDL file, a=testonly
Automatic update from web-platform-testsUpdate the presentation-api IDL file (#9814)

--

wpt-commits: a7864dedd978cf183bc203a514a141193ce8ee12
wpt-pr: 9814
2018-07-11 07:56:53 +01:00
moz-wptsync-bot
a935b03e1a Bug 1467562 [wpt PR 11384] - Update wpt metadata, a=testonly
wpt-pr: 11384
wpt-type: metadata
2018-07-11 07:56:49 +01:00
Ovidio Henriquez
bf7a3ffdcf Bug 1467562 [wpt PR 11384] - Update existing WebUSB WPT to be multi-global, a=testonly
Automatic update from web-platform-testsUpdate existing WebUSB WPT to be multi-global

This change updates the remaining WebUSB web platform tests to be
multi-global so that the API is also tested in the worker contexts.

Bug: 841510
Change-Id: I9df24f1ae4289ab742db275c34552200bb477b22
Reviewed-on: https://chromium-review.googlesource.com/1089033
Commit-Queue: Ovidio Henriquez <odejesush@chromium.org>
Reviewed-by: Reilly Grant <reillyg@chromium.org>
Cr-Commit-Position: refs/heads/master@{#565778}

--

wpt-commits: a82a385bd794d9120b0eb8b94f452d4d38bfe04b
wpt-pr: 11384
2018-07-11 07:56:48 +01:00
moz-wptsync-bot
1155bad23f Bug 1467629 [wpt PR 11391] - Update wpt metadata, a=testonly
wpt-pr: 11391
wpt-type: metadata
2018-07-11 07:56:44 +01:00
Ovidio Henriquez
6164cebde7 Bug 1467629 [wpt PR 11391] - Reland "Multi-global WebUSB WPT for window and worker", a=testonly
Automatic update from web-platform-testsReland "Multi-global WebUSB WPT for window and worker"

This is a reland of 1ff37758f07612906228581dbc808df4b282e250

Original change's description:
> Multi-global WebUSB WPT for window and worker
>
> This change updates the existing web platform tests for WebUSB to use
> multi-global tests to test the API in the supported contexts. The
> change updates the following tests:
> * idlharness
> * usb
> * usbConnectionEvent
>
> Bug: 841510
> Change-Id: I6b118aa4121109cd6a48054c2ebc69b831660afc
> Reviewed-on: https://chromium-review.googlesource.com/1087209
> Reviewed-by: Reilly Grant <reillyg@chromium.org>
> Commit-Queue: Ovidio Henriquez <odejesush@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#564981}

Bug: 841510
Change-Id: Ie354fdd54a4cd94a4801ee634c8d3263e0aa6e93
Reviewed-on: https://chromium-review.googlesource.com/1089647
Commit-Queue: Ovidio Henriquez <odejesush@chromium.org>
Reviewed-by: Chong Zhang <chongz@chromium.org>
Reviewed-by: Reilly Grant <reillyg@chromium.org>
Cr-Commit-Position: refs/heads/master@{#567290}

--

wpt-commits: 6dee65cf657cfc5b2ad1042f778980eef79dd67d
wpt-pr: 11391


--HG--
rename : testing/web-platform/tests/webusb/resources/usb.serviceworker.js => testing/web-platform/tests/webusb/usb.serviceworker.js
2018-07-11 07:56:43 +01:00
moz-wptsync-bot
bf0415cdfd Bug 1470147 [wpt PR 11607] - Update wpt metadata, a=testonly
wpt-pr: 11607
wpt-type: metadata
2018-07-11 07:56:39 +01:00
Simon Pieters
334d32e21a Bug 1470147 [wpt PR 11607] - HTML: split up meta refresh parsing test, a=testonly
Automatic update from web-platform-testsHTML: split up meta refresh parsing test

Part of #11571.

--

wpt-commits: a9d0ad0cd520582ba102993460cd318cccd8153d
wpt-pr: 11607
2018-07-11 07:56:37 +01:00
Simon Pieters
916e2759c3 Bug 1470142 [wpt PR 11606] - WebSocket: only test 2 connections in websockets/constructor/014.html, a=testonly
Automatic update from web-platform-testsWebSocket: only test 2 connections in websockets/constructor/014.html

Part of #11571.

--

wpt-commits: 7e77da661fc920d3cda671be9804fcd8a24dae29
wpt-pr: 11606
2018-07-11 07:56:34 +01:00
moz-wptsync-bot
88ccb12d1e Bug 1466089 [wpt PR 11294] - Update wpt metadata, a=testonly
wpt-pr: 11294
wpt-type: metadata
2018-07-11 07:56:31 +01:00
Simon Pieters
e17270cf73 Bug 1466089 [wpt PR 11294] - HTML: Expect salvegable to be set to false for pagehide test, a=testonly
Automatic update from web-platform-testsHTML: Expect salvegable to be set to false for pagehide test

Also rename the manual test.

Part of #11269.
--

wpt-commits: 939af265657f0fe6c59094cd9a519b6be9fdbac0
wpt-pr: 11294


--HG--
rename : testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/unload/manual-001-1.html => testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/unload/pagehide-manual-1.html
2018-07-11 07:56:29 +01:00
moz-wptsync-bot
eaf3feaed2 Bug 1464910 [wpt PR 11204] - Update wpt metadata, a=testonly
wpt-pr: 11204
wpt-type: metadata
2018-07-11 07:56:26 +01:00
Simon Pieters
43e6f56c9c Bug 1464910 [wpt PR 11204] - Split up WebCryptoAPI/derive_bits_keys/ with variant, a=testonly
Automatic update from web-platform-testsSplit up WebCryptoAPI/derive_bits_keys/ with `variant`

Also use .any.js.

Fixes #11203.
--

wpt-commits: 864cba25d0ac3d2f49e851623370f565ca293cbe
wpt-pr: 11204
2018-07-11 07:56:24 +01:00
robman
739b536b16 Bug 1470135 [wpt PR 11604] - Update META.yml, a=testonly
Automatic update from web-platform-testsAdd @robman as suggested reviewer for mediacapture-depth/ (#11604)

--

wpt-commits: 2d497c444f06c7348b1e6322ec8804df69d54c59
wpt-pr: 11604
2018-07-11 07:56:21 +01:00
moz-wptsync-bot
4ae87c38b4 Bug 1467333 [wpt PR 11372] - Update wpt metadata, a=testonly
wpt-pr: 11372
wpt-type: metadata
2018-07-11 07:56:18 +01:00
Suneel Kota
dad88516ce Bug 1467333 [wpt PR 11372] - Navigating to fragment scrolls with writing-mode: vertical-rl, a=testonly
Automatic update from web-platform-testsNavigating to fragment scrolls with writing-mode: vertical-rl

This CL sets the alignment of the Anchor node in accordance, when
vertical-rl writing-mode is set

Bug: 844868
Change-Id: I8357bcccbc88ffcd3b5d01265737a5b60f1e59a8
Reviewed-on: https://chromium-review.googlesource.com/1075956
Commit-Queue: srirama chandra sekhar <srirama.m@samsung.com>
Reviewed-by: David Bokan <bokan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569214}

--

wpt-commits: 81918dc2da004801fba7f8833daf6930882831c3
wpt-pr: 11372
2018-07-11 07:56:16 +01:00
moz-wptsync-bot
828886b560 Bug 1470121 [wpt PR 11603] - Update wpt metadata, a=testonly
wpt-pr: 11603
wpt-type: metadata
2018-07-11 07:56:13 +01:00
Jonathan Kingston
15ec35c7d5 Bug 1470121 [wpt PR 11603] - Add tests for Element.toggleAttribute., a=testonly
Automatic update from web-platform-testsAdd tests for Element's toggleAttribute()

See https://dom.spec.whatwg.org/#dom-element-toggleattribute and https://github.com/whatwg/dom/pull/656.
--

wpt-commits: c3db018b96681af3c73ec331ecc01d38e48b8b10
wpt-pr: 11603
2018-07-11 07:56:11 +01:00
moz-wptsync-bot
d86c1bc319 Bug 1470028 [wpt PR 11594] - Update wpt metadata, a=testonly
wpt-pr: 11594
wpt-type: metadata
2018-07-11 07:56:08 +01:00
Rune Lillesveen
78accb587b Bug 1470028 [wpt PR 11594] - Don't clear non-layout-object style for PseudoElements., a=testonly
Automatic update from web-platform-testsDon't clear non-layout-object style for PseudoElements.

They are only used for storing an extra ComputedStyle for
display:contents pseudo elements as the ComputedStyle for rendering uses
a display:inline with only properties inherited for the parent element.

Bug: 854563
Change-Id: I4dd3d99b0dee0b538645d005b36347b469799244
Reviewed-on: https://chromium-review.googlesource.com/1107802
Reviewed-by: Anders Ruud <andruud@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569204}

--

wpt-commits: bcae036590041ef1704e2ba337e0577dac8c11c4
wpt-pr: 11594
2018-07-11 07:56:06 +01:00
moz-wptsync-bot
2273c857cb Bug 1470088 [wpt PR 11601] - Update wpt metadata, a=testonly
wpt-pr: 11601
wpt-type: metadata
2018-07-11 07:56:03 +01:00
Kent Tamura
b24204e42c Bug 1470088 [wpt PR 11601] - dom: Mark dom/interfaces.html as slow., a=testonly
Automatic update from web-platform-testsdom: Mark dom/interfaces.html as slow.

TBR=hayato@chromium.org
NOTRY=true

Bug: 854599
Change-Id: I11a7f53c65992274b9a4f0ce832749a76421b049
Reviewed-on: https://chromium-review.googlesource.com/1109665
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569188}

--

wpt-commits: 9afae5fcc27c64b96c02df377115cc05f399c2b6
wpt-pr: 11601
2018-07-11 07:56:01 +01:00
Luke Bjerring
631dc9c3a5 Bug 1469685 [wpt PR 11574] - Auto-update the mediacapture-depth IDL file, a=testonly
Automatic update from web-platform-testsAuto-update the mediacapture-depth IDL file (#11574)

* Add mediacapture-depth idl file
* Add  idlharness.html
--

wpt-commits: 263264f7ee8a09414a0ce8f312febede0dbc8830
wpt-pr: 11574
2018-07-11 07:55:58 +01:00
Xiaocheng Hu
a92cd44cb0 Bug 1470059 [wpt PR 11596] - Add a new test case for hit testing inline elements, a=testonly
Automatic update from web-platform-testsAdd a new test case for hit testing inline elements

This patch adds a new WPT that hit tests the empty region in an inline
element above a child with smaller font size (i.e., smaller height), and
expects to hit the inline element itself.

This helps us add related implementation in LayoutNG, since no existing
test case tests this behavior yet.

Bug: 851075
Cq-Include-Trybots: luci.chromium.try :linux_layout_tests_layout_ng
Change-Id: Ic538681530e17ea0d5fc49612376e30bdcf563d8
Reviewed-on: https://chromium-review.googlesource.com/1108560
Reviewed-by: Emil A Eklund <eae@chromium.org>
Commit-Queue: Xiaocheng Hu <xiaochengh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569082}

--

wpt-commits: cece9a142ba91d0e283a3206f272bde4876fe2a7
wpt-pr: 11596
MozReview-Commit-ID: CvzjoCi9YpJ
2018-07-11 07:55:54 +01:00
Victor Costan
7003e6e252 Bug 1470060 [wpt PR 11597] - Update cookie-store OWNERS, a=testonly
Automatic update from web-platform-testsUpdate cookie-store OWNERS (#11597)

--

wpt-commits: bca26f329c58b1e7b53f3ab691405e10c3b677ed
wpt-pr: 11597
2018-07-11 07:55:51 +01:00
moz-wptsync-bot
d69fa95fdd Bug 1470045 [wpt PR 11595] - Update wpt metadata, a=testonly
wpt-pr: 11595
wpt-type: metadata
2018-07-11 07:55:48 +01:00