Skip to content
Test Suites for Web Platform specifications—including WHATWG, W3C and others
HTML JavaScript GLSL Python CSS Haxe
Failed to load latest commit information.
2dcontext Remove more testharness.css links (#2217)
DOMEvents Add OWNERS files generated from commit log.
FileAPI Update Blob-constructor.html for new sequence handling.
IndexedDB Implement IDBKeyRange.includes().
WebCryptoAPI Add OWNERS files generated from commit log.
WebIDL Lazily define interface objects on globals (fixes #6419)
XMLHttpRequest Change old references of ecoal95
ambient-light Add OWNERS files generated from commit log.
app-uri Remove more testharness.css links (#2217)
battery-status Fix a typo
common Add OWNERS files generated from commit log.
conformance-checkers cc Minor update to message.json file
content-security-policy Remove more testharness.css links (#2217)
cookies Basic tests for ignoring 'secure' cookies
cors Add OWNERS files generated from commit log.
cssom-view Correct an assert_array_equals call.
custom-elements Remove more testharness.css links (#2217)
docs Removed {% raw %} and {% endraw %} stuff.
dom Add insert_adjacent methods into Element
domparsing Add OWNERS files generated from commit log.
domxpath Add OWNERS files generated from commit log.
editing Add OWNERS files generated from commit log.
encoding Add support for the MS932 label of Shift_JIS. r=emk,
eventsource Add OWNERS files generated from commit log.
ext-xhtml-pubid/the-xhtml-syntax/parsing-xhtml-documents Convert files with only CRLF line endings to pure LF
fetch Make subtest names stable for a fetch api test,
fonts move hierarchy to the root
gamepad Add OWNERS files generated from commit log.
geolocation-API Add OWNERS files generated from commit log.
hr-time Add/remove @foolip from OWNERS to better match interests/expertise
html-imports Remove more testharness.css links (#2217)
html-longdesc Add OWNERS files generated from commit log.
html-media-capture Add/remove @foolip from OWNERS to better match interests/expertise
html Merge pull request #2759 from Ms2ger/isVisible
http Add a test for respecting the HTTP content length header.
images Add OWNERS files generated from commit log.
infrastructure Move failing-test.html out of common.
innerText Followup: add SVG tests.
js Remove WeakMap.prototype.clear from web-platform test.
media-source Add/remove @foolip from OWNERS to better match interests/expertise
media Add OWNERS files generated from commit log.
mediacapture-streams ENH: flat layout with explicit names
microdata Microdata DOM API was removed in whatwg/html@2aaecb8
mixed-content Add OWNERS files generated from commit log.
navigation-timing Add/remove @foolip from OWNERS to better match interests/expertise
notifications Add OWNERS files generated from commit log.
old-tests webdriver: move existing tests to /old-tests
page-visibility Add/remove @foolip from OWNERS to better match interests/expertise
performance-timeline Add OWNERS files generated from commit log.
pointerevents Add OWNERS files generated from commit log.
pointerlock Add OWNERS files generated from commit log.
presentation-api * update idlharness.html with latest Presentation API interfaces from…
progress-events Move the test for cross-origin progress events into place.
proximity Add OWNERS files generated from commit log.
quirks-mode Add OWNERS files generated from commit log.
referrer-policy Merge pull request #2550 from estark37/referrer-policy-attribute
resource-timing Add OWNERS files generated from commit log.
resources @ 72dd676 Update resources
screen-orientation Add OWNERS files generated from commit log.
selection Add OWNERS files generated from commit log.
selectors-api/tests/submissions/Opera Fix other tests that use the ParentNode-querySelector-All.js script.
selectors/attribute-selectors/attribute-case Remove test about setting cssText since it's no-op
service-workers P4 Update cache wpt tests for new add()/addAll() behavior.
shadow-dom Converts hard tab to 4-spaces; r=Ms2ger
streams Import and uplift streams spec wpt tests.
subresource-integrity Add OWNERS files generated from commit log.
svg Add OWNERS files generated from commit log.
tools @ 3457cd9 tools: update to 3457cd
touch-events Merge pull request #2393 from choniong/ontouch-globaleventhandler-test
typedarrays Add OWNERS files generated from commit log.
uievents Add manual tests for mouseover/out handling
url Test that setting URL::href does not take the base into account; r=do…
user-timing Add OWNERS files generated from commit log.
vibration Remove more testharness.css links (#2217)
web-animations Remove more testharness.css links (#2217)
webaudio Add OWNERS files generated from commit log.
webdriver webdriver: add idl test for navigator.webdriver
webgl Merge pull request #2627 from renchenglei/master
webmessaging Add a test to check for prefixed initMessageEvent support.
webrtc Remove more testharness.css links (#2217)
websockets Update WebSocket blocked ports to match the Fetch spec
webstorage Add a bunch of tests for Web Storage to ensure all DOMStrings work
webvtt Add OWNERS files to replace GH review teams.
workers Add support for navigator.hardwareConcurrency.
.gitignore gitignore: ignore whole directory
.gitmodules Ignore dirty tools submodule in git status
.travis.yml [infra] Cause Travis to start builds much faster.
CONTRIBUTING.md Further modifications to the CLA text.
LICENSE actual license
README.md Remove reference to id2path script from the README.
config.default.json Add doc_root and ws_doc_root defaulting to null in config.default.json.
lint More helpful error message for failed ImportError
lint.whitelist Update whitelist so that Travis still passes
manifest Make sure we supply the correct test root when generating the manifest.
serve Pass routes in to servers rather than relying on global state.
serve.py Serve: Remove misleading shebang.
server-side.md Make tests self-hosting
testharness_runner.html Add testharness_runner file here for now.

README.md

The Web Platform Tests Project IRC chat

The Web Platform Tests Project is a W3C-coordinated attempt to build a cross-browser testsuite for the Web-platform stack. However, for mainly historic reasons, the CSS WG testsuite is in a separate repository, csswg-test. 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.

Running the Tests

The tests are designed to be run from your local computer. The test environment requires Python 2.7+ (but not Python 3.x). You will also need a copy of OpenSSL. Users on Windows should read the Windows Notes section below.

To get the tests running, you need to set up the test domains in your hosts file. The following entries are required:

127.0.0.1   web-platform.test
127.0.0.1   www.web-platform.test
127.0.0.1   www1.web-platform.test
127.0.0.1   www2.web-platform.test
127.0.0.1   xn--n8j6ds53lwwkrqhv28a.web-platform.test
127.0.0.1   xn--lve-6lad.web-platform.test

Because web-platform-tests uses git submodules, you must ensure that these are up to date. In the root of your checkout, run:

git submodule update --init --recursive

The test environment can then be started using

./serve

This will start HTTP servers on two ports and a websockets server on one port. By default one web server starts on port 8000 and the other ports are randomly-chosen free ports. Tests must be loaded from the first HTTP server in the output. To change the ports, edit the config.json file, for example, replacing the part that reads:

"http": [8000, "auto"]

to some port of your choice e.g.

"http":[1234, "auto"]

If you installed OpenSSL in such a way that running openssl at a command line doesn't work, you also need to adjust the path to the OpenSSL binary. This can be done by adding a section to config.json like:

"ssl": {"openssl": {"binary": "/path/to/openssl"}}

Windows Notes

Running wptserve with SSL enabled on Windows typically requires installing an OpenSSL distribution. Shining Light provide a convenient installer that is known to work, but requires a little extra setup.

After installation ensure that the path to OpenSSL is on your %Path% environment variable.

Then set the path to the default OpenSSL configuration file (usually something like C:\OpenSSL-Win32\bin\openssl.cfg in the server configuration. To do this copy config.default.json in the web-platform-tests root to config.json. Then edit the JSON so that the key ssl/openssl/base_conf_path has a value that is the path to the OpenSSL config file.

Test Runner

There is a test runner that is designed to provide a convenient way to run the web-platform tests in-browser. It will run testharness.js tests automatically but requires manual work for reftests and manual tests.

The runner can be found at /tools/runner/index.html on the local server i.e.

http://web-platform.test:8000/tools/runner/index.html

in the default configuration. The first time you use this it has to generate a manifest of all tests. This may take some time, so please be patient.

Publication

The master branch is automatically synced to http://w3c-test.org/.

Pull requests that have been checked are automatically mirrored to http://w3c-test.org/submissions/.

Finding Things

Each top-level directory represents a W3C specification: the name matches the shortname used after the canonical address of the said specification under http://www.w3.org/TR/ .

For some of the specifications, the tree under the top-level directory represents the sections of the respective documents, using the section IDs for directory names, with a maximum of three levels deep.

So if you're looking for tests in HTML for "The History interface", they will be under html/browsers/history/the-history-interface/.

Various resources that tests depend on are in common, images, and fonts.

Branches

In the vast majority of cases the only upstream branch that you should need to care about is master. If you see other branches in the repository, you can generally safely ignore them.

Contributing

Save the Web, Write Some Tests!

Absolutely everyone is welcome (and even encouraged) to contribute to test development, so long as you fulfill the contribution requirements detailed in the Contributing Guidelines. 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:

  • Fork this repository (and make sure you're still relatively in sync with it if you forked a while ago).
  • Create a branch for your changes: git checkout -b topic.
  • Make your changes.
  • Run the lint script described below.
  • Commit locally and push that to your repo.
  • Send in a pull request based on the above.

Lint tool

We have a lint tool for catching common mistakes in test files. You can run it manually by starting the lint executable from the root of your local web-platform-tests working directory like this:

./lint

The lint tool is also run automatically for every submitted pull request, and reviewers will not merge branches with tests that have lint errors, so you must fix any errors the lint tool reports. For details on doing that, see the lint-tool documentation.

But in the unusual case of error reports for things essential to a certain test or that for other exceptional reasons shouldn't prevent a merge of a test, update and commit the lint.whitelist file in the web-platform-tests root directory to suppress the error reports. For details on doing that, see the lint-tool documentation.

Adding command-line scripts ("tools" subdirs)

Sometimes you may want to add a script to the repository that's meant to be used from the command line, not from a browser (e.g., a script for generating test files). If you want to ensure (e.g., for security reasons) that such scripts won't be handled by the HTTP server, but will instead only be usable from the command line, then place them in either:

  • the tools subdir at the root of the repository, or

  • the tools subdir at the root of any top-level directory in the repository which contains the tests the script is meant to be used with

Any files in those tools directories won't be handled by the HTTP server; instead the server will return a 404 if a user navigates to the URL for a file within them.

If you want to add a script for use with a particular set of tests but there isn't yet any tools subdir at the root of a top-level directory in the repository containing those tests, you can create a tools subdir at the root of that top-level directory and place your scripts there.

For example, if you wanted to add a script for use with tests in the notifications directory, create the notifications/tools subdir and put your script there.

Test Review

We can sometimes take a little while to go through pull requests because we have to go through all the tests and ensure that they match the specification correctly. But we look at all of them, and take everything that we can.

Getting Involved

If you wish to contribute actively, you're very welcome to join the [email protected] mailing list (low traffic) by signing up to our mailing list. The mailing list is archived.

Join us on irc #testing (irc.w3.org, port 6665). The channel is archived.

Documentation

Something went wrong with that request. Please try again.