Skip to content

Commit b96f5e4

Browse files
committed
Add expectations for Safari in for infrastructure/ tests
In preparation for running these tests in CI. Verified locally with Safari Technology Preview 67: ``` export no_proxy='*' ./wpt run --metadata infrastructure/metadata/ --channel=preview safari infrastructure/ ./wpt run --metadata infrastructure/metadata/ --channel=preview safari_webdriver infrastructure/ ``` With Safari 12 there are still failures, but we'll not use that in CI.
1 parent 2ed748f commit b96f5e4

File tree

10 files changed

+37
-4
lines changed

10 files changed

+37
-4
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[allowed-to-play.html]
2+
expected:
3+
if product == "safari" or product == "safari_webdriver": ERROR # https://bugs.webkit.org/show_bug.cgi?id=190775
4+
5+
6+
[<audio> autoplay]
7+
expected:
8+
if product == "safari" or product == "safari_webdriver": FAIL # https://bugs.webkit.org/show_bug.cgi?id=190775
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[html-elements.html]
2+
[Compare CSS span definitions (only valid if pre-reqs pass)]
3+
expected:
4+
if product == "safari" or product == "safari_webdriver": FAIL # https://webkit.org/show_bug.cgi?id=187052
5+
6+
7+
[Compare CSS div definitions (only valid if pre-reqs pass)]
8+
expected:
9+
if product == "safari" or product == "safari_webdriver": FAIL # https://webkit.org/show_bug.cgi?id=187052
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[context.any.sharedworker.html]
2+
[context]
3+
expected:
4+
if product == "safari" or product == "safari_webdriver": FAIL # https://bugs.webkit.org/show_bug.cgi?id=149850
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[order-of-metas.any.sharedworker.html]
2+
[foo]
3+
expected:
4+
if product == "safari" or product == "safari_webdriver": FAIL # https://bugs.webkit.org/show_bug.cgi?id=149850
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[secure-context.https.any.sharedworker.html]
2+
[secure-context]
3+
expected:
4+
if product == "safari" or product == "safari_webdriver": FAIL # https://bugs.webkit.org/show_bug.cgi?id=149850
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[title.any.sharedworker.html]
2+
[foobar]
3+
expected:
4+
if product == "safari" or product == "safari_webdriver": FAIL # https://bugs.webkit.org/show_bug.cgi?id=149850
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[elementPosition.html]
22
expected:
3-
if product == "chrome": ERROR
3+
if product == "chrome" or product == "safari" or product == "safari_webdriver": ERROR
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[elementTiming.html]
22
expected:
3-
if product == "chrome": ERROR
3+
if product == "chrome" or product == "safari" or product == "safari_webdriver": ERROR
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[eventOrder.html]
22
expected:
3-
if product == "chrome": ERROR
3+
if product == "chrome" or product == "safari" or product == "safari_webdriver": ERROR
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[multiDevice.html]
22
expected:
3-
if product == "chrome": ERROR
3+
if product == "chrome" or product == "safari" or product == "safari_webdriver": ERROR

0 commit comments

Comments
 (0)