From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- testing/web-platform/tests/quirks-mode/OWNERS | 1 + .../tests/quirks-mode/active-and-hover-manual.html | 182 ++++++++ .../quirks-mode/blocks-ignore-line-height.html | 85 ++++ .../tests/quirks-mode/hashless-hex-color.html | 498 +++++++++++++++++++++ .../historical/list-item-bullet-size-ref.html | 13 + .../historical/list-item-bullet-size.html | 16 + .../tests/quirks-mode/line-height-calculation.html | 96 ++++ .../quirks-mode/percentage-height-calculation.html | 154 +++++++ .../web-platform/tests/quirks-mode/supports.html | 48 ++ ...able-cell-nowrap-minimum-width-calculation.html | 72 +++ .../quirks-mode/table-cell-width-calculation.html | 174 +++++++ .../tests/quirks-mode/unitless-length.html | 226 ++++++++++ 12 files changed, 1565 insertions(+) create mode 100644 testing/web-platform/tests/quirks-mode/OWNERS create mode 100644 testing/web-platform/tests/quirks-mode/active-and-hover-manual.html create mode 100644 testing/web-platform/tests/quirks-mode/blocks-ignore-line-height.html create mode 100644 testing/web-platform/tests/quirks-mode/hashless-hex-color.html create mode 100644 testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size-ref.html create mode 100644 testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size.html create mode 100644 testing/web-platform/tests/quirks-mode/line-height-calculation.html create mode 100644 testing/web-platform/tests/quirks-mode/percentage-height-calculation.html create mode 100644 testing/web-platform/tests/quirks-mode/supports.html create mode 100644 testing/web-platform/tests/quirks-mode/table-cell-nowrap-minimum-width-calculation.html create mode 100644 testing/web-platform/tests/quirks-mode/table-cell-width-calculation.html create mode 100644 testing/web-platform/tests/quirks-mode/unitless-length.html (limited to 'testing/web-platform/tests/quirks-mode') diff --git a/testing/web-platform/tests/quirks-mode/OWNERS b/testing/web-platform/tests/quirks-mode/OWNERS new file mode 100644 index 000000000..638516146 --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/OWNERS @@ -0,0 +1 @@ +@zcorpan diff --git a/testing/web-platform/tests/quirks-mode/active-and-hover-manual.html b/testing/web-platform/tests/quirks-mode/active-and-hover-manual.html new file mode 100644 index 000000000..f334d88fb --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/active-and-hover-manual.html @@ -0,0 +1,182 @@ + + + + The :active and :hover quirk + + + + + +

Click on the boxes below (using a pointing device).

+
+

quirks: + +

almost: + +

standards: + + + + + diff --git a/testing/web-platform/tests/quirks-mode/blocks-ignore-line-height.html b/testing/web-platform/tests/quirks-mode/blocks-ignore-line-height.html new file mode 100644 index 000000000..608a7c15c --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/blocks-ignore-line-height.html @@ -0,0 +1,85 @@ + + + + The blocks ignore line-height quirk + + + + + +

+ + + + + + diff --git a/testing/web-platform/tests/quirks-mode/hashless-hex-color.html b/testing/web-platform/tests/quirks-mode/hashless-hex-color.html new file mode 100644 index 000000000..cbda90c0a --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/hashless-hex-color.html @@ -0,0 +1,498 @@ + + + + The hashless hex color quirk + + + + + + +
+ + + + + + diff --git a/testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size-ref.html b/testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size-ref.html new file mode 100644 index 000000000..f449ce992 --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size-ref.html @@ -0,0 +1,13 @@ + +Historical quirk: list item bullet size + +

There should be a normal-size bullet and a big bullet below.

+ + diff --git a/testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size.html b/testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size.html new file mode 100644 index 000000000..bf996edf7 --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/historical/list-item-bullet-size.html @@ -0,0 +1,16 @@ + +Historical quirk: list item bullet size + + + + +

There should be a normal-size bullet and a big bullet below.

+ + diff --git a/testing/web-platform/tests/quirks-mode/line-height-calculation.html b/testing/web-platform/tests/quirks-mode/line-height-calculation.html new file mode 100644 index 000000000..7e7f03a99 --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/line-height-calculation.html @@ -0,0 +1,96 @@ + + + + The line height calculation quirk + + + + + +
+ + + + + + diff --git a/testing/web-platform/tests/quirks-mode/percentage-height-calculation.html b/testing/web-platform/tests/quirks-mode/percentage-height-calculation.html new file mode 100644 index 000000000..7cadd8b0f --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/percentage-height-calculation.html @@ -0,0 +1,154 @@ + + + + The percentage height calculation quirk + + + + + +
+ + + + + + + diff --git a/testing/web-platform/tests/quirks-mode/supports.html b/testing/web-platform/tests/quirks-mode/supports.html new file mode 100644 index 000000000..913f7d9f7 --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/supports.html @@ -0,0 +1,48 @@ + +Syntax quirks in @supports/CSS.supports + + + + + + + +
+
+
+ diff --git a/testing/web-platform/tests/quirks-mode/table-cell-nowrap-minimum-width-calculation.html b/testing/web-platform/tests/quirks-mode/table-cell-nowrap-minimum-width-calculation.html new file mode 100644 index 000000000..2ff00b9ee --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/table-cell-nowrap-minimum-width-calculation.html @@ -0,0 +1,72 @@ + + + + The table cell nowrap minimum width calculation quirk + + + + + +
+ + + + + + diff --git a/testing/web-platform/tests/quirks-mode/table-cell-width-calculation.html b/testing/web-platform/tests/quirks-mode/table-cell-width-calculation.html new file mode 100644 index 000000000..eeb726627 --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/table-cell-width-calculation.html @@ -0,0 +1,174 @@ + + + + The table cell width calculation quirk + + + + + +
+ + + + + + diff --git a/testing/web-platform/tests/quirks-mode/unitless-length.html b/testing/web-platform/tests/quirks-mode/unitless-length.html new file mode 100644 index 000000000..b2f05c010 --- /dev/null +++ b/testing/web-platform/tests/quirks-mode/unitless-length.html @@ -0,0 +1,226 @@ + + + + The unitless length quirk + + + + + +
+ + + + + + -- cgit v1.2.3