| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google 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 18 matching lines...) Expand all Loading... |
| 29 #include "InspectorTypeBuilder.h" | 29 #include "InspectorTypeBuilder.h" |
| 30 #include "core/css/CSSComputedStyleDeclaration.h" | 30 #include "core/css/CSSComputedStyleDeclaration.h" |
| 31 #include "core/css/CSSImportRule.h" | 31 #include "core/css/CSSImportRule.h" |
| 32 #include "core/css/CSSPropertySourceData.h" | 32 #include "core/css/CSSPropertySourceData.h" |
| 33 #include "core/css/CSSRule.h" | 33 #include "core/css/CSSRule.h" |
| 34 #include "core/css/CSSRuleList.h" | 34 #include "core/css/CSSRuleList.h" |
| 35 #include "core/css/CSSStyleRule.h" | 35 #include "core/css/CSSStyleRule.h" |
| 36 #include "core/css/CSSStyleSheet.h" | 36 #include "core/css/CSSStyleSheet.h" |
| 37 #include "core/css/StylePropertySet.h" | 37 #include "core/css/StylePropertySet.h" |
| 38 #include "core/css/StylePropertyShorthand.h" | 38 #include "core/css/StylePropertyShorthand.h" |
| 39 #include "core/css/StyleResolver.h" | |
| 40 #include "core/css/StyleRule.h" | 39 #include "core/css/StyleRule.h" |
| 41 #include "core/css/StyleSheet.h" | 40 #include "core/css/StyleSheet.h" |
| 42 #include "core/css/StyleSheetList.h" | 41 #include "core/css/StyleSheetList.h" |
| 42 #include "core/css/resolver/StyleResolver.h" |
| 43 #include "core/dom/ExceptionCodePlaceholder.h" | 43 #include "core/dom/ExceptionCodePlaceholder.h" |
| 44 #include "core/dom/NamedFlow.h" | 44 #include "core/dom/NamedFlow.h" |
| 45 #include "core/dom/NamedFlowCollection.h" | 45 #include "core/dom/NamedFlowCollection.h" |
| 46 #include "core/dom/Node.h" | 46 #include "core/dom/Node.h" |
| 47 #include "core/dom/NodeList.h" | 47 #include "core/dom/NodeList.h" |
| 48 #include "core/html/HTMLHeadElement.h" | 48 #include "core/html/HTMLHeadElement.h" |
| 49 #include "core/html/HTMLStyleElement.h" | 49 #include "core/html/HTMLStyleElement.h" |
| 50 #include "core/inspector/ContentSearchUtils.h" | 50 #include "core/inspector/ContentSearchUtils.h" |
| 51 #include "core/inspector/InspectorDOMAgent.h" | 51 #include "core/inspector/InspectorDOMAgent.h" |
| 52 #include "core/inspector/InspectorHistory.h" | 52 #include "core/inspector/InspectorHistory.h" |
| (...skipping 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1510 documentsToChange.add(element->ownerDocument()); | 1510 documentsToChange.add(element->ownerDocument()); |
| 1511 } | 1511 } |
| 1512 | 1512 |
| 1513 m_nodeIdToForcedPseudoState.clear(); | 1513 m_nodeIdToForcedPseudoState.clear(); |
| 1514 for (HashSet<Document*>::iterator it = documentsToChange.begin(), end = docu
mentsToChange.end(); it != end; ++it) | 1514 for (HashSet<Document*>::iterator it = documentsToChange.begin(), end = docu
mentsToChange.end(); it != end; ++it) |
| 1515 (*it)->styleResolverChanged(RecalcStyleImmediately); | 1515 (*it)->styleResolverChanged(RecalcStyleImmediately); |
| 1516 } | 1516 } |
| 1517 | 1517 |
| 1518 } // namespace WebCore | 1518 } // namespace WebCore |
| 1519 | 1519 |
| OLD | NEW |