| 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "public/web/WebFrame.h" | 32 #include "public/web/WebFrame.h" |
| 33 | 33 |
| 34 #include "SkBitmap.h" | 34 #include "SkBitmap.h" |
| 35 #include "SkCanvas.h" | 35 #include "SkCanvas.h" |
| 36 #include "bindings/core/v8/SerializedScriptValueFactory.h" | 36 #include "bindings/core/v8/SerializedScriptValueFactory.h" |
| 37 #include "bindings/core/v8/V8Node.h" | 37 #include "bindings/core/v8/V8Node.h" |
| 38 #include "core/clipboard/DataTransfer.h" | 38 #include "core/clipboard/DataTransfer.h" |
| 39 #include "core/css/StyleSheetContents.h" | 39 #include "core/css/StyleSheetContents.h" |
| 40 #include "core/css/resolver/StyleResolver.h" | 40 #include "core/css/resolver/StyleResolver.h" |
| 41 #include "core/css/resolver/ViewportStyleResolver.h" | 41 #include "core/css/resolver/ViewportStyleResolver.h" |
| 42 #include "core/dom/DocumentMarkerController.h" | |
| 43 #include "core/dom/Fullscreen.h" | 42 #include "core/dom/Fullscreen.h" |
| 44 #include "core/dom/NodeComputedStyle.h" | 43 #include "core/dom/NodeComputedStyle.h" |
| 45 #include "core/dom/Range.h" | 44 #include "core/dom/Range.h" |
| 46 #include "core/editing/Editor.h" | 45 #include "core/editing/Editor.h" |
| 47 #include "core/editing/EphemeralRange.h" | 46 #include "core/editing/EphemeralRange.h" |
| 48 #include "core/editing/FrameSelection.h" | 47 #include "core/editing/FrameSelection.h" |
| 49 #include "core/editing/SpellChecker.h" | 48 #include "core/editing/SpellChecker.h" |
| 50 #include "core/editing/VisiblePosition.h" | 49 #include "core/editing/VisiblePosition.h" |
| 50 #include "core/editing/markers/DocumentMarkerController.h" |
| 51 #include "core/events/MouseEvent.h" | 51 #include "core/events/MouseEvent.h" |
| 52 #include "core/fetch/FetchRequest.h" | 52 #include "core/fetch/FetchRequest.h" |
| 53 #include "core/fetch/MemoryCache.h" | 53 #include "core/fetch/MemoryCache.h" |
| 54 #include "core/fetch/ResourceFetcher.h" | 54 #include "core/fetch/ResourceFetcher.h" |
| 55 #include "core/frame/FrameHost.h" | 55 #include "core/frame/FrameHost.h" |
| 56 #include "core/frame/FrameView.h" | 56 #include "core/frame/FrameView.h" |
| 57 #include "core/frame/LocalFrame.h" | 57 #include "core/frame/LocalFrame.h" |
| 58 #include "core/frame/RemoteFrame.h" | 58 #include "core/frame/RemoteFrame.h" |
| 59 #include "core/frame/Settings.h" | 59 #include "core/frame/Settings.h" |
| 60 #include "core/frame/VisualViewport.h" | 60 #include "core/frame/VisualViewport.h" |
| (...skipping 7979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8040 | 8040 |
| 8041 TEST_F(WebFrameTest, MaxFramesDetach) | 8041 TEST_F(WebFrameTest, MaxFramesDetach) |
| 8042 { | 8042 { |
| 8043 registerMockedHttpURLLoad("max-frames-detach.html"); | 8043 registerMockedHttpURLLoad("max-frames-detach.html"); |
| 8044 FrameTestHelpers::WebViewHelper webViewHelper; | 8044 FrameTestHelpers::WebViewHelper webViewHelper; |
| 8045 WebViewImpl* webViewImpl = webViewHelper.initializeAndLoad(m_baseURL + "max-
frames-detach.html", true); | 8045 WebViewImpl* webViewImpl = webViewHelper.initializeAndLoad(m_baseURL + "max-
frames-detach.html", true); |
| 8046 webViewImpl->mainFrameImpl()->collectGarbage(); | 8046 webViewImpl->mainFrameImpl()->collectGarbage(); |
| 8047 } | 8047 } |
| 8048 | 8048 |
| 8049 } // namespace blink | 8049 } // namespace blink |
| OLD | NEW |