| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 #include "core/fetch/StyleSheetResourceClient.h" | 56 #include "core/fetch/StyleSheetResourceClient.h" |
| 57 #include "core/html/HTMLHeadElement.h" | 57 #include "core/html/HTMLHeadElement.h" |
| 58 #include "core/inspector/InspectorDOMAgent.h" | 58 #include "core/inspector/InspectorDOMAgent.h" |
| 59 #include "core/inspector/InspectorHistory.h" | 59 #include "core/inspector/InspectorHistory.h" |
| 60 #include "core/inspector/InspectorPageAgent.h" | 60 #include "core/inspector/InspectorPageAgent.h" |
| 61 #include "core/inspector/InspectorResourceAgent.h" | 61 #include "core/inspector/InspectorResourceAgent.h" |
| 62 #include "core/inspector/InspectorState.h" | 62 #include "core/inspector/InspectorState.h" |
| 63 #include "core/inspector/InstrumentingAgents.h" | 63 #include "core/inspector/InstrumentingAgents.h" |
| 64 #include "core/loader/DocumentLoader.h" | 64 #include "core/loader/DocumentLoader.h" |
| 65 #include "core/frame/ContentSecurityPolicy.h" | 65 #include "core/frame/ContentSecurityPolicy.h" |
| 66 #include "core/frame/Frame.h" | |
| 67 #include "core/page/Page.h" | |
| 68 #include "core/platform/graphics/Font.h" | 66 #include "core/platform/graphics/Font.h" |
| 69 #include "core/platform/graphics/WidthIterator.h" | 67 #include "core/platform/graphics/WidthIterator.h" |
| 70 #include "core/rendering/InlineTextBox.h" | 68 #include "core/rendering/InlineTextBox.h" |
| 71 #include "core/rendering/RenderObject.h" | 69 #include "core/rendering/RenderObject.h" |
| 72 #include "core/rendering/RenderRegion.h" | 70 #include "core/rendering/RenderRegion.h" |
| 73 #include "core/rendering/RenderText.h" | 71 #include "core/rendering/RenderText.h" |
| 74 #include "core/rendering/RenderTextFragment.h" | 72 #include "core/rendering/RenderTextFragment.h" |
| 75 #include "platform/JSONValues.h" | 73 #include "platform/JSONValues.h" |
| 76 #include "platform/fonts/GlyphBuffer.h" | 74 #include "platform/fonts/GlyphBuffer.h" |
| 77 #include "platform/graphics/TextRun.h" | 75 #include "platform/graphics/TextRun.h" |
| (...skipping 1696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1774 documentsToChange.add(element->ownerDocument()); | 1772 documentsToChange.add(element->ownerDocument()); |
| 1775 } | 1773 } |
| 1776 | 1774 |
| 1777 m_nodeIdToForcedPseudoState.clear(); | 1775 m_nodeIdToForcedPseudoState.clear(); |
| 1778 for (HashSet<Document*>::iterator it = documentsToChange.begin(), end = docu
mentsToChange.end(); it != end; ++it) | 1776 for (HashSet<Document*>::iterator it = documentsToChange.begin(), end = docu
mentsToChange.end(); it != end; ++it) |
| 1779 (*it)->setNeedsStyleRecalc(); | 1777 (*it)->setNeedsStyleRecalc(); |
| 1780 } | 1778 } |
| 1781 | 1779 |
| 1782 } // namespace WebCore | 1780 } // namespace WebCore |
| 1783 | 1781 |
| OLD | NEW |