WebKit Bugzilla
Attachment 356596 Details for
Bug 192397
: Import css overscroll behavior WPT test
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-192397-20181205130952.patch (text/plain), 5.23 KB, created by
Frédéric Wang (:fredw)
on 2018-12-05 04:09:53 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Frédéric Wang (:fredw)
Created:
2018-12-05 04:09:53 PST
Size:
5.23 KB
patch
obsolete
>Subversion Revision: 238890 >diff --git a/LayoutTests/imported/w3c/ChangeLog b/LayoutTests/imported/w3c/ChangeLog >index 6c7a97813c5ab8d0a6ec6a8bdc311b823e631948..b2e74551481cd270e8f0a346f9c390491434709d 100644 >--- a/LayoutTests/imported/w3c/ChangeLog >+++ b/LayoutTests/imported/w3c/ChangeLog >@@ -1,3 +1,16 @@ >+2018-12-05 Frederic Wang <fwang@igalia.com> >+ >+ Import css overscroll behavior WPT test >+ https://bugs.webkit.org/show_bug.cgi?id=192397 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * resources/import-expectations.json: >+ * web-platform-tests/css/css-overscroll-behavior/META.yml: Added. >+ * web-platform-tests/css/css-overscroll-behavior/inheritance-expected.txt: Added. >+ * web-platform-tests/css/css-overscroll-behavior/inheritance.html: Added. >+ * web-platform-tests/css/css-overscroll-behavior/w3c-import.log: Added. >+ > 2018-12-05 Rob Buis <rbuis@igalia.com> > > Align with Fetch on data: URLs >diff --git a/LayoutTests/imported/w3c/resources/import-expectations.json b/LayoutTests/imported/w3c/resources/import-expectations.json >index 1e8c8fcb341e3845c35e26466d4e75ea6401d201..0a92e1c3aaa4b9b9d0df1e8e1b0f27358821c88a 100644 >--- a/LayoutTests/imported/w3c/resources/import-expectations.json >+++ b/LayoutTests/imported/w3c/resources/import-expectations.json >@@ -71,6 +71,7 @@ > "web-platform-tests/css/css-grid/layout-algorithm/": "import", > "web-platform-tests/css/css-logical": "import", > "web-platform-tests/css/css-multicol": "import", >+ "web-platform-tests/css/css-overscroll-behavior": "import", > "web-platform-tests/css/css-properties-values-api": "import", > "web-platform-tests/css/css-pseudo": "import", > "web-platform-tests/css/css-scoping": "import", >diff --git a/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/META.yml b/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/META.yml >new file mode 100644 >index 0000000000000000000000000000000000000000..f15c86fd9069b04a23975834215adcc077711789 >--- /dev/null >+++ b/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/META.yml >@@ -0,0 +1,3 @@ >+spec: https://drafts.csswg.org/css-overscroll-behavior/ >+suggested_reviewers: >+ - majido >diff --git a/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/inheritance-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/inheritance-expected.txt >new file mode 100644 >index 0000000000000000000000000000000000000000..437d187546241470918b93b6cef0d292f7bc12e1 >--- /dev/null >+++ b/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/inheritance-expected.txt >@@ -0,0 +1,6 @@ >+ >+PASS Property overscroll-behavior-x has initial value auto >+PASS Property overscroll-behavior-x does not inherit >+PASS Property overscroll-behavior-y has initial value auto >+PASS Property overscroll-behavior-y does not inherit >+ >diff --git a/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/inheritance.html b/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/inheritance.html >new file mode 100644 >index 0000000000000000000000000000000000000000..e49fa49bc4e26572a68ad947e8e82a63ee46d4e2 >--- /dev/null >+++ b/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/inheritance.html >@@ -0,0 +1,22 @@ >+<!DOCTYPE html> >+<html> >+<head> >+<meta charset="utf-8"> >+<title>Inheritance of CSS Overscroll Behavior properties</title> >+<link rel="help" href="https://drafts.csswg.org/css-overscroll-behavior/#property-index"> >+<meta name="assert" content="Properties inherit or not according to the spec."> >+<meta name="assert" content="Properties have initial values according to the spec."> >+<script src="/resources/testharness.js"></script> >+<script src="/resources/testharnessreport.js"></script> >+<script src="/css/support/inheritance-testcommon.js"></script> >+</head> >+<body> >+<div id="container"> >+ <div id="target"></div> >+</div> >+<script> >+assert_not_inherited('overscroll-behavior-x', 'auto', 'contain'); >+assert_not_inherited('overscroll-behavior-y', 'auto', 'contain'); >+</script> >+</body> >+</html> >diff --git a/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/w3c-import.log b/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/w3c-import.log >new file mode 100644 >index 0000000000000000000000000000000000000000..6f743cc69984055c4b074f9a814de0f775882a8c >--- /dev/null >+++ b/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/w3c-import.log >@@ -0,0 +1,18 @@ >+The tests in this directory were imported from the W3C repository. >+Do NOT modify these tests directly in WebKit. >+Instead, create a pull request on the WPT github: >+ https://github.com/web-platform-tests/wpt >+ >+Then run the Tools/Scripts/import-w3c-tests in WebKit to reimport >+ >+Do NOT modify or remove this file. >+ >+------------------------------------------------------------------------ >+Properties requiring vendor prefixes: >+None >+Property values requiring vendor prefixes: >+None >+------------------------------------------------------------------------ >+List of files: >+/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/META.yml >+/LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/inheritance.html
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 192397
: 356596