From c73515865ddd2483fad9424dadfd0bd3f720e144 Mon Sep 17 00:00:00 2001 From: Liviu Tinta Date: Sat, 24 Apr 2021 09:18:00 +0000 Subject: [PATCH] Bug 1707011 [wpt PR 28645] - Remove ClickPointerEventIntegerCoordinates flag, a=testonly Automatic update from web-platform-tests Remove ClickPointerEventIntegerCoordinates flag We've decided to keep click, auxclick and contextmenu coordinates as integers going forward. Remove the flag. Bug: 1150438 Change-Id: I36814e3a3be9ab928547e5b2bca4dcfd134ce781 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2842807 Reviewed-by: Robert Flack Reviewed-by: Mustaq Ahmed Commit-Queue: Liviu Tinta Cr-Commit-Position: refs/heads/master@{#875276} -- wpt-commits: b88a8d6e17922687b689950c52cab0fb7842abb6 wpt-pr: 28645 --- .../the-dialog-element/dialog-form-submission.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/dialog-form-submission.html b/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/dialog-form-submission.html index 73c9ee95bc56..344f5f1d831f 100644 --- a/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/dialog-form-submission.html +++ b/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/dialog-form-submission.html @@ -69,7 +69,7 @@ promise_test(async () => { assert_false(dialog.open, "dialog should be closed now"); assert_not_equals(dialog.returnValue, "", "returnValue shouldn't be empty string"); assert_equals(dialog.returnValue, expectedReturnValue, "returnValue should be the offsets of the click"); -}, "input image button should return the coordianates"); +}, "input image button should return the coordinates"); promise_test(async () => { const dialog = document.querySelector('dialog');