| Index: third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-element-events.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-element-events.html b/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-element-events.html
|
| index 75bd82477d39ea717eebaf223490120ed7060aea..793c63a0cc5dac5886a5f4b627834975c986e23d 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-element-events.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-element-events.html
|
| @@ -7,12 +7,12 @@ div:before {
|
| width: 100px;
|
| content: "";
|
| display: block;
|
| - -webkit-transition: width 1ms;
|
| + transition: width 1ms;
|
| }
|
|
|
| div {
|
| padding: 10px;
|
| - -webkit-transition: padding 20ms;
|
| + transition: padding 20ms;
|
| }
|
|
|
| .transition {
|
| @@ -37,7 +37,7 @@ if (window.testRunner) {
|
| onload = function() {
|
| var div = document.querySelector('div');
|
| div.className = 'transition';
|
| - div.addEventListener('webkitTransitionEnd', function(event) {
|
| + div.addEventListener('transitionend', function(event) {
|
| window.event = event;
|
| shouldBeEqualToString('event.target.tagName', 'DIV');
|
| if (event.target == div) {
|
|
|