diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-07-12 02:47:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-12 02:47:14 -0700 |
commit | f0c3543f53ac37dbd14741fba3678fdbd01343cc (patch) | |
tree | 8fbd7dbd71aecfb24865273f10ba97026ec7795f /tests/wpt/web-platform-tests/web-animations/README.md | |
parent | 5f188003baa2682cff29baf62e996474def588d1 (diff) | |
parent | 0edf0ececba3b691e08d4f6300c3cd0a0cdc2b89 (diff) | |
download | servo-f0c3543f53ac37dbd14741fba3678fdbd01343cc.tar.gz servo-f0c3543f53ac37dbd14741fba3678fdbd01343cc.zip |
Auto merge of #12408 - servo:wpt-20160712, r=Ms2ger
Update web-platform-tests to revision 53f3408ffe1fd0e56a37aff4aaf1fa8441c41d6d
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12408)
<!-- Reviewable:end -->
Diffstat (limited to 'tests/wpt/web-platform-tests/web-animations/README.md')
-rw-r--r-- | tests/wpt/web-platform-tests/web-animations/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/wpt/web-platform-tests/web-animations/README.md b/tests/wpt/web-platform-tests/web-animations/README.md index ca01178a982..c6d7c72c204 100644 --- a/tests/wpt/web-platform-tests/web-animations/README.md +++ b/tests/wpt/web-platform-tests/web-animations/README.md @@ -12,17 +12,17 @@ Guidelines for writing tests For example, if you want to test setting the start time, you might be tempted to put all the tests in: - > `/web-animations/Animation/startTime.html` + > `/web-animations/interfaces/Animation/startTime.html` However, in the spec most of the logic is in the “Set the animation start time“ procedure in the “Timing model” section. Instead, try something like: - > * `/web-animations/timing-model/animation/set-the-animation-start-time.html`<br> + > * `/web-animations/timing-model/animations/set-the-animation-start-time.html`<br> > Tests all the branches and inputs to the procedure as defined in the > spec (using the `Animation.startTime` API). - > * `/web-animations/Animation/startTime.html`<br> + > * `/web-animations/interfaces/Animation/startTime.html`<br> > Tests API-layer specific issues like mapping unresolved values to > null, etc. |