| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 bool m_applyItalic; | 261 bool m_applyItalic; |
| 262 bool m_applyUnderline; | 262 bool m_applyUnderline; |
| 263 bool m_applyLineThrough; | 263 bool m_applyLineThrough; |
| 264 bool m_applySubscript; | 264 bool m_applySubscript; |
| 265 bool m_applySuperscript; | 265 bool m_applySuperscript; |
| 266 String m_applyFontColor; | 266 String m_applyFontColor; |
| 267 String m_applyFontFace; | 267 String m_applyFontFace; |
| 268 String m_applyFontSize; | 268 String m_applyFontSize; |
| 269 }; | 269 }; |
| 270 | 270 |
| 271 // FIXME: Remove these functions or make them non-global to discourage using CSS
StyleDeclaration directly. | 271 // FIXME: Remove these functions or make them non-global to discourage using |
| 272 // CSSStyleDeclaration directly. |
| 272 CSSValueID getIdentifierValue(CSSStyleDeclaration*, CSSPropertyID); | 273 CSSValueID getIdentifierValue(CSSStyleDeclaration*, CSSPropertyID); |
| 273 CSSValueID getIdentifierValue(StylePropertySet*, CSSPropertyID); | 274 CSSValueID getIdentifierValue(StylePropertySet*, CSSPropertyID); |
| 274 | 275 |
| 275 } // namespace blink | 276 } // namespace blink |
| 276 | 277 |
| 277 #endif // EditingStyle_h | 278 #endif // EditingStyle_h |
| OLD | NEW |