Revert "Fix popover-light-dismiss.html" This reverts commit 02d797ea20afb35ef326458b54de758da8f492a5. Reason for revert: LUCI Bisection has identified this change as the cause of a test failure. See the analysis: https://ci.chromium.org/ui/p/chromium/bisection/test-analysis/b/5639081310552064 Sample build with failed test: https://ci.chromium.org/b/8750553163900166785 Affected test(s): [ninja://:blink_wpt_tests/external/wpt/html/semantics/popovers/popover-light-dismiss.html](https://ci.chromium.org/ui/test/chromium/ninja:%2F%2F:blink_wpt_tests%2Fexternal%2Fwpt%2Fhtml%2Fsemantics%2Fpopovers%2Fpopover-light-dismiss.html?q=VHash%3A402a4a508f2b5677) [ninja://:blink_wpt_tests/virtual/popover-hint-disabled/external/wpt/html/semantics/popovers/popover-light-dismiss.html](https://ci.chromium.org/ui/test/chromium/ninja:%2F%2F:blink_wpt_tests%2Fvirtual%2Fpopover-hint-disabled%2Fexternal%2Fwpt%2Fhtml%2Fsemantics%2Fpopovers%2Fpopover-light-dismiss.html?q=VHash%3A402a4a508f2b5677) If this is a false positive, please report it at http://b.corp.google.com/createIssue?component=1199205&description=Analysis%3A+https%3A%2F%2Fci.chromium.org%2Fui%2Fp%2Fchromium%2Fbisection%2Ftest-analysis%2Fb%2F5639081310552064&format=PLAIN&priority=P3&title=Wrongly+blamed+https%3A%2F%2Fchromium-review.googlesource.com%2Fc%2Fchromium%2Fsrc%2F%2B%2F5402096&type=BUG Original change's description: > Fix popover-light-dismiss.html > > We are failing the last subtest in popover-light-dismiss which clicks > and drags from the main frame to an iframe because chromedriver is > telling chrome that we are doing pointerUp in both the button in the > main frame and the body of the iframe at the same time. I'm not sure > why, but combining the actions sequences and using the main frame's > document as the origin for the pointerUp fixes this. > > The failure only occurs with run_wpt_tests.py, not run_web_tests.py. > > Since writing the above message, another test case was appended which > doesn't include an iframe, and the same fix of using one action sequence > was needed there too, so there must be some chromedriver bug which > doesn't even involve iframes. I verified with internal debug logging > that the new action sequences do in fact exercise the code which needs > to be tested, at least in chromium. > > Bug: 325981758 > Change-Id: I992a01a6baf78a7701da3dd8df76788c93ed0aaa > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5402096 > Reviewed-by: Mason Freed <masonf@chromium.org> > Commit-Queue: Joey Arhar <jarhar@chromium.org> > Cr-Commit-Position: refs/heads/main@{#1287670} > Bug: 325981758 Change-Id: I2abb5b85277bcb5d0801f1f99e198eb5d7c3ea0c No-Presubmit: true No-Tree-Checks: true No-Try: true
The web-platform-tests Project is a cross-browser test suite for the Web-platform stack. Writing tests in a way that allows them to be run in all browsers gives browser projects confidence that they are shipping software that is compatible with other implementations, and that later implementations will be compatible with their implementations. This in turn gives Web authors/developers confidence that they can actually rely on the Web platform to deliver on the promise of working across browsers and devices without needing extra layers of abstraction to paper over the gaps left by specification editors and implementors.
The most important sources of information and activity are:
wpt:matrix.org matrix channel; includes participants located around the world, but busiest during the European working day.If you'd like clarification about anything, don't hesitate to ask in the chat room or on the mailing list.
Clone or otherwise get https://github.com/web-platform-tests/wpt.
Note: because of the frequent creation and deletion of branches in this repo, it is recommended to “prune” stale branches when fetching updates, i.e. use git pull --prune (or git fetch -p && git merge).
See the documentation website and in particular the system setup for running tests locally.
The wpt command provides a frontend to a variety of tools for working with and running web-platform-tests. Some of the most useful commands are:
wpt serve - For starting the wpt http serverwpt run - For running tests in a browserwpt lint - For running the lint against all testswpt manifest - For updating or generating a MANIFEST.json test manifestwpt install - For installing the latest release of a browser or webdriver server on the local machine.wpt serve-wave - For starting the wpt http server and the WAVE test runner. For more details on how to use the WAVE test runner see the documentation.On Windows wpt commands must be prefixed with python or the path to the python binary (if python is not in your %PATH%).
python wpt [command]
Alternatively, you may also use Bash on Ubuntu on Windows in the Windows 10 Anniversary Update build, then access your windows partition from there to launch wpt commands.
Please make sure git and your text editor do not automatically convert line endings, as it will cause lint errors. For git, please set git config core.autocrlf false in your working tree.
The master branch is automatically synced to wpt.live and w3c-test.org.
Save the Web, Write Some Tests!
Absolutely everyone is welcome to contribute to test development. No test is too small or too simple, especially if it corresponds to something for which you've noted an interoperability bug in a browser.
The way to contribute is just as usual:
git checkout -b topic../wpt lint as described above.If you spot an issue with a test and are not comfortable providing a pull request per above to fix it, please file a new issue. Thank you!