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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 #include "core/css/resolver/ViewportStyleResolver.h" | 47 #include "core/css/resolver/ViewportStyleResolver.h" |
48 #include "core/dom/ClientRect.h" | 48 #include "core/dom/ClientRect.h" |
49 #include "core/dom/ClientRectList.h" | 49 #include "core/dom/ClientRectList.h" |
50 #include "core/dom/DOMStringList.h" | 50 #include "core/dom/DOMStringList.h" |
51 #include "core/dom/Document.h" | 51 #include "core/dom/Document.h" |
52 #include "core/dom/DocumentMarker.h" | 52 #include "core/dom/DocumentMarker.h" |
53 #include "core/dom/DocumentMarkerController.h" | 53 #include "core/dom/DocumentMarkerController.h" |
54 #include "core/dom/Element.h" | 54 #include "core/dom/Element.h" |
55 #include "core/dom/ExceptionCode.h" | 55 #include "core/dom/ExceptionCode.h" |
56 #include "core/dom/FullscreenElementStack.h" | 56 #include "core/dom/FullscreenElementStack.h" |
57 #include "core/dom/NodeRenderingContext.h" | |
58 #include "core/dom/PseudoElement.h" | 57 #include "core/dom/PseudoElement.h" |
59 #include "core/dom/Range.h" | 58 #include "core/dom/Range.h" |
60 #include "core/dom/StaticNodeList.h" | 59 #include "core/dom/StaticNodeList.h" |
61 #include "core/dom/TreeScope.h" | 60 #include "core/dom/TreeScope.h" |
62 #include "core/dom/ViewportArguments.h" | 61 #include "core/dom/ViewportArguments.h" |
63 #include "core/dom/WheelController.h" | 62 #include "core/dom/WheelController.h" |
64 #include "core/dom/shadow/ComposedTreeWalker.h" | 63 #include "core/dom/shadow/ComposedTreeWalker.h" |
65 #include "core/dom/shadow/ElementShadow.h" | 64 #include "core/dom/shadow/ElementShadow.h" |
66 #include "core/dom/shadow/SelectRuleFeatureSet.h" | 65 #include "core/dom/shadow/SelectRuleFeatureSet.h" |
67 #include "core/dom/shadow/ShadowRoot.h" | 66 #include "core/dom/shadow/ShadowRoot.h" |
(...skipping 2144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2212 return false; | 2211 return false; |
2213 sharedContext->getExtensions()->loseContextCHROMIUM(Extensions3D::GUILTY_CON
TEXT_RESET_ARB, Extensions3D::INNOCENT_CONTEXT_RESET_ARB); | 2212 sharedContext->getExtensions()->loseContextCHROMIUM(Extensions3D::GUILTY_CON
TEXT_RESET_ARB, Extensions3D::INNOCENT_CONTEXT_RESET_ARB); |
2214 // To prevent tests that call loseSharedGraphicsContext3D from being | 2213 // To prevent tests that call loseSharedGraphicsContext3D from being |
2215 // flaky, we call finish so that the context is guaranteed to be lost | 2214 // flaky, we call finish so that the context is guaranteed to be lost |
2216 // synchronously (i.e. before returning). | 2215 // synchronously (i.e. before returning). |
2217 sharedContext->finish(); | 2216 sharedContext->finish(); |
2218 return true; | 2217 return true; |
2219 } | 2218 } |
2220 | 2219 |
2221 } | 2220 } |
OLD | NEW |