summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/animation/animation_sim_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/animation/animation_sim_test.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/animation/animation_sim_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/core/animation/animation_sim_test.cc b/chromium/third_party/blink/renderer/core/animation/animation_sim_test.cc
index fd01d827daa..345f1d40be8 100644
--- a/chromium/third_party/blink/renderer/core/animation/animation_sim_test.cc
+++ b/chromium/third_party/blink/renderer/core/animation/animation_sim_test.cc
@@ -48,12 +48,14 @@ TEST_F(AnimationSimTest, CustomPropertyBaseComputedStyle) {
// name: '--x',
// syntax: '<percentage>',
// initialValue: '0%',
+ // inherits: false
// })
DummyExceptionStateForTesting exception_state;
PropertyDescriptor property_descriptor;
property_descriptor.setName("--x");
property_descriptor.setSyntax("<percentage>");
property_descriptor.setInitialValue("0%");
+ property_descriptor.setInherits(false);
PropertyRegistration::registerProperty(&GetDocument(), property_descriptor,
exception_state);
EXPECT_FALSE(exception_state.HadException());