| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/animation/ElementAnimation.h" | 5 #include "core/animation/ElementAnimation.h" |
| 6 #include "core/css/PropertyDescriptor.h" | 6 #include "core/css/PropertyDescriptor.h" |
| 7 #include "core/css/PropertyRegistration.h" | 7 #include "core/css/PropertyRegistration.h" |
| 8 #include "core/page/Page.h" |
| 8 #include "platform/wtf/CurrentTime.h" | 9 #include "platform/wtf/CurrentTime.h" |
| 9 #include "public/web/WebScriptSource.h" | 10 #include "public/web/WebScriptSource.h" |
| 10 #include "web/WebLocalFrameImpl.h" | 11 #include "web/WebLocalFrameImpl.h" |
| 11 #include "web/tests/sim/SimCompositor.h" | 12 #include "web/tests/sim/SimCompositor.h" |
| 12 #include "web/tests/sim/SimDisplayItemList.h" | 13 #include "web/tests/sim/SimDisplayItemList.h" |
| 13 #include "web/tests/sim/SimRequest.h" | 14 #include "web/tests/sim/SimRequest.h" |
| 14 #include "web/tests/sim/SimTest.h" | 15 #include "web/tests/sim/SimTest.h" |
| 15 | 16 |
| 16 namespace blink { | 17 namespace blink { |
| 17 | 18 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 *target, StringKeyframeEffectModel::Create(keyframes), timing); | 93 *target, StringKeyframeEffectModel::Create(keyframes), timing); |
| 93 | 94 |
| 94 // This (previously) would not clear the existing baseComputedStyle and would | 95 // This (previously) would not clear the existing baseComputedStyle and would |
| 95 // crash on the equality assertion in the exit frame when it tried to update | 96 // crash on the equality assertion in the exit frame when it tried to update |
| 96 // it. | 97 // it. |
| 97 Compositor().BeginFrame(1); | 98 Compositor().BeginFrame(1); |
| 98 Compositor().BeginFrame(1); | 99 Compositor().BeginFrame(1); |
| 99 } | 100 } |
| 100 | 101 |
| 101 } // namespace blink | 102 } // namespace blink |
| OLD | NEW |