Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/WebKit/Source/core/editing/commands/RemoveCSSPropertyCommand.cpp

Issue 1405293012: [Variables] Enable get/setProperty and similar APIs from the CSSOM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use static_assert. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 { 51 {
52 const StylePropertySet* style = m_element->inlineStyle(); 52 const StylePropertySet* style = m_element->inlineStyle();
53 if (!style) 53 if (!style)
54 return; 54 return;
55 55
56 m_oldValue = style->getPropertyValue(m_property); 56 m_oldValue = style->getPropertyValue(m_property);
57 m_important = style->propertyIsImportant(m_property); 57 m_important = style->propertyIsImportant(m_property);
58 58
59 // Mutate using the CSSOM wrapper so we get the same event behavior as a scr ipt. 59 // Mutate using the CSSOM wrapper so we get the same event behavior as a scr ipt.
60 // Setting to null string removes the property. We don't have internal versi on of removeProperty. 60 // Setting to null string removes the property. We don't have internal versi on of removeProperty.
61 m_element->style()->setPropertyInternal(m_property, String(), false, IGNORE_ EXCEPTION); 61 m_element->style()->setPropertyInternal(m_property, String(), String(), fals e, IGNORE_EXCEPTION);
62 } 62 }
63 63
64 void RemoveCSSPropertyCommand::doUnapply() 64 void RemoveCSSPropertyCommand::doUnapply()
65 { 65 {
66 m_element->style()->setPropertyInternal(m_property, m_oldValue, m_important, IGNORE_EXCEPTION); 66 m_element->style()->setPropertyInternal(m_property, String(), m_oldValue, m_ important, IGNORE_EXCEPTION);
67 } 67 }
68 68
69 DEFINE_TRACE(RemoveCSSPropertyCommand) 69 DEFINE_TRACE(RemoveCSSPropertyCommand)
70 { 70 {
71 visitor->trace(m_element); 71 visitor->trace(m_element);
72 SimpleEditCommand::trace(visitor); 72 SimpleEditCommand::trace(visitor);
73 } 73 }
74 74
75 } // namespace blink 75 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698