diff options
| author | pol@apple.com <pol@apple.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2008-12-19 00:39:21 +0000 |
|---|---|---|
| committer | pol@apple.com <pol@apple.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2008-12-19 00:39:21 +0000 |
| commit | 12168ebe2b27e05338b63ade22b42838fe18acd7 (patch) | |
| tree | cbb28d2e6bea28cc8aae183b40b1cc9355b4baf5 /third_party/WebKit/LayoutTests/transitions/interrupt-transform-transition.html | |
| parent | 8a7dc3e55a60e65e38d7f0eccad13b642d4ebc2f (diff) | |
| download | chromium_src-12168ebe2b27e05338b63ade22b42838fe18acd7.zip chromium_src-12168ebe2b27e05338b63ade22b42838fe18acd7.tar.gz chromium_src-12168ebe2b27e05338b63ade22b42838fe18acd7.tar.bz2 | |
2008-12-18 Pierre-Olivier Latour <pol@apple.com>
Reviewed by Darin Adler.
Rewrote some of the transition layout tests that were using setTimeout() to use the transition pause API in DRT when available.
Rewrote the transition layout tests that were specifically testing the transition end event to use common JS code from transition-end-event-helpers.js.
Fixed some typos.
https://bugs.webkit.org/show_bug.cgi?id=22890
* transitions/end-event-helpers.js: Removed.
* transitions/interrupt-transform-transition-expected.txt:
* transitions/interrupt-transform-transition.html:
* transitions/opacity-transition-zindex.html:
* transitions/start-transform-transition.html:
* transitions/transform-op-list-match-expected.txt:
* transitions/transform-op-list-match.html:
* transitions/transform-op-list-no-match-expected.txt:
* transitions/transform-op-list-no-match.html:
* transitions/transition-end-event-all-properties-expected.txt:
* transitions/transition-end-event-all-properties.html:
* transitions/transition-end-event-attributes-expected.txt:
* transitions/transition-end-event-attributes.html:
* transitions/transition-end-event-container-expected.txt:
* transitions/transition-end-event-container.html:
* transitions/transition-end-event-helpers.js: Copied from LayoutTests/transitions/end-event-helpers.js.
(recordTransitionEndEvent):
(runTransitionTest.processEndEvents.compareEventInfo):
(runTransitionTest.processEndEvents.examineResults):
(runTransitionTest.processEndEvents):
(runTransitionTest.startTest):
(runTransitionTest.window):
(runTransitionTest):
* transitions/transition-end-event-left-expected.txt:
* transitions/transition-end-event-left.html:
* transitions/transition-end-event-multiple-01-expected.txt:
* transitions/transition-end-event-multiple-01.html:
* transitions/transition-end-event-multiple-02-expected.txt:
* transitions/transition-end-event-multiple-02.html:
* transitions/transition-end-event-multiple-03-expected.txt:
* transitions/transition-end-event-multiple-03.html:
* transitions/transition-end-event-multiple-04-expected.txt:
* transitions/transition-end-event-multiple-04.html:
* transitions/transition-end-event-nested-expected.txt:
* transitions/transition-end-event-nested.html:
* transitions/transition-end-event-set-none-expected.txt:
* transitions/transition-end-event-set-none.html:
* transitions/transition-end-event-transform-expected.txt:
* transitions/transition-end-event-transform.html:
* transitions/transition-end-event-window-expected.txt:
* transitions/transition-end-event-window.html:
* transitions/transition-test-helpers.js: Added.
(runTransitionTest.isCloseEnough):
(runTransitionTest.checkExpectedValue):
(runTransitionTest.endTest):
(runTransitionTest.runTest):
(runTransitionTest.startTest):
(runTransitionTest.if):
* transitions/transition-timing-function-expected.txt: Copied from LayoutTests/transitions/transition-timing-function-software-expected.txt.
* transitions/transition-timing-function-software-expected.txt: Removed.
* transitions/transition-timing-function-software.html: Removed.
* transitions/transition-timing-function.html: Copied from LayoutTests/transitions/transition-timing-function-software.html.
* transitions/zero-duration-in-list-expected.txt:
* transitions/zero-duration-in-list.html:
git-svn-id: svn://svn.chromium.org/blink/trunk@39384 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/transitions/interrupt-transform-transition.html')
| -rw-r--r-- | third_party/WebKit/LayoutTests/transitions/interrupt-transform-transition.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/third_party/WebKit/LayoutTests/transitions/interrupt-transform-transition.html b/third_party/WebKit/LayoutTests/transitions/interrupt-transform-transition.html index 930ba27..81ea1695 100644 --- a/third_party/WebKit/LayoutTests/transitions/interrupt-transform-transition.html +++ b/third_party/WebKit/LayoutTests/transitions/interrupt-transform-transition.html @@ -1,6 +1,6 @@ <html> <head> - <title>Interrupted hardware transition</title> + <title>Interrupted Transition</title> <style type="text/css" media="screen"> .box { position: relative; @@ -13,10 +13,6 @@ -webkit-transition-duration: 2s; -webkit-transform: translate(0, 0); } - - .moved { -/* -webkit-transform: translateX(300px);*/ - } </style> <script type="text/javascript" charset="utf-8"> if (window.layoutTestController) { @@ -51,7 +47,7 @@ </script> </head> <body onload="startTest()"> - <p>Interrupted hardware transition should not jump back to pre-transtion transform</p> + <p>Interrupted transition should not jump back to pre-transition transform</p> <div id="box" class="box"> </div> <div id="result"> |
