| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 30 matching lines...) Expand all Loading... |
| 41 #include "core/css/resolver/StyleResolverStats.h" | 41 #include "core/css/resolver/StyleResolverStats.h" |
| 42 #include "core/css/resolver/ViewportStyleResolver.h" | 42 #include "core/css/resolver/ViewportStyleResolver.h" |
| 43 #include "core/dom/ClientRect.h" | 43 #include "core/dom/ClientRect.h" |
| 44 #include "core/dom/ClientRectList.h" | 44 #include "core/dom/ClientRectList.h" |
| 45 #include "core/dom/DOMStringList.h" | 45 #include "core/dom/DOMStringList.h" |
| 46 #include "core/dom/Document.h" | 46 #include "core/dom/Document.h" |
| 47 #include "core/dom/DocumentMarker.h" | 47 #include "core/dom/DocumentMarker.h" |
| 48 #include "core/dom/DocumentMarkerController.h" | 48 #include "core/dom/DocumentMarkerController.h" |
| 49 #include "core/dom/Element.h" | 49 #include "core/dom/Element.h" |
| 50 #include "core/dom/ExceptionCode.h" | 50 #include "core/dom/ExceptionCode.h" |
| 51 #include "core/dom/FullscreenElementStack.h" | |
| 52 #include "core/dom/NodeRenderStyle.h" | 51 #include "core/dom/NodeRenderStyle.h" |
| 53 #include "core/dom/PseudoElement.h" | 52 #include "core/dom/PseudoElement.h" |
| 54 #include "core/dom/Range.h" | 53 #include "core/dom/Range.h" |
| 55 #include "core/dom/StaticNodeList.h" | 54 #include "core/dom/StaticNodeList.h" |
| 56 #include "core/dom/StyleEngine.h" | 55 #include "core/dom/StyleEngine.h" |
| 57 #include "core/dom/TreeScope.h" | 56 #include "core/dom/TreeScope.h" |
| 58 #include "core/dom/ViewportDescription.h" | 57 #include "core/dom/ViewportDescription.h" |
| 59 #include "core/dom/shadow/ComposedTreeWalker.h" | 58 #include "core/dom/shadow/ComposedTreeWalker.h" |
| 60 #include "core/dom/shadow/ElementShadow.h" | 59 #include "core/dom/shadow/ElementShadow.h" |
| 61 #include "core/dom/shadow/SelectRuleFeatureSet.h" | 60 #include "core/dom/shadow/SelectRuleFeatureSet.h" |
| (...skipping 2218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2280 { | 2279 { |
| 2281 Vector<Document::TransitionElementData> elementData; | 2280 Vector<Document::TransitionElementData> elementData; |
| 2282 frame()->document()->getTransitionElementData(elementData); | 2281 frame()->document()->getTransitionElementData(elementData); |
| 2283 | 2282 |
| 2284 Vector<Document::TransitionElementData>::iterator iter = elementData.begin()
; | 2283 Vector<Document::TransitionElementData>::iterator iter = elementData.begin()
; |
| 2285 for (; iter != elementData.end(); ++iter) | 2284 for (; iter != elementData.end(); ++iter) |
| 2286 frame()->document()->hideTransitionElements(AtomicString(iter->selector)
); | 2285 frame()->document()->hideTransitionElements(AtomicString(iter->selector)
); |
| 2287 } | 2286 } |
| 2288 | 2287 |
| 2289 } // namespace blink | 2288 } // namespace blink |
| OLD | NEW |