Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: third_party/WebKit/Source/core/loader/resource/CSSStyleSheetResourceTest.cpp

Issue 2469873002: [ImageResource 4] Split ImageResource into Resource and Image parts (Closed)
Patch Set: style Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/loader/resource/CSSStyleSheetResource.h" 5 #include "core/loader/resource/CSSStyleSheetResource.h"
6 6
7 #include "core/css/CSSCrossfadeValue.h" 7 #include "core/css/CSSCrossfadeValue.h"
8 #include "core/css/CSSImageValue.h" 8 #include "core/css/CSSImageValue.h"
9 #include "core/css/CSSPrimitiveValue.h" 9 #include "core/css/CSSPrimitiveValue.h"
10 #include "core/css/CSSProperty.h" 10 #include "core/css/CSSProperty.h"
11 #include "core/css/CSSSelectorList.h" 11 #include "core/css/CSSSelectorList.h"
12 #include "core/css/CSSStyleSheet.h" 12 #include "core/css/CSSStyleSheet.h"
13 #include "core/css/StylePropertySet.h" 13 #include "core/css/StylePropertySet.h"
14 #include "core/css/StyleRule.h" 14 #include "core/css/StyleRule.h"
15 #include "core/css/StyleSheetContents.h" 15 #include "core/css/StyleSheetContents.h"
16 #include "core/css/parser/CSSParserMode.h" 16 #include "core/css/parser/CSSParserMode.h"
17 #include "core/css/parser/CSSParserSelector.h" 17 #include "core/css/parser/CSSParserSelector.h"
18 #include "core/dom/Document.h" 18 #include "core/dom/Document.h"
19 #include "core/fetch/FetchContext.h" 19 #include "core/fetch/FetchContext.h"
20 #include "core/fetch/FetchInitiatorTypeNames.h" 20 #include "core/fetch/FetchInitiatorTypeNames.h"
21 #include "core/fetch/FetchRequest.h" 21 #include "core/fetch/FetchRequest.h"
22 #include "core/fetch/ImageResource.h"
22 #include "core/fetch/MemoryCache.h" 23 #include "core/fetch/MemoryCache.h"
23 #include "core/fetch/ResourceFetcher.h" 24 #include "core/fetch/ResourceFetcher.h"
24 #include "core/testing/DummyPageHolder.h" 25 #include "core/testing/DummyPageHolder.h"
25 #include "platform/heap/Handle.h" 26 #include "platform/heap/Handle.h"
26 #include "platform/heap/Heap.h" 27 #include "platform/heap/Heap.h"
27 #include "platform/network/ResourceRequest.h" 28 #include "platform/network/ResourceRequest.h"
28 #include "platform/testing/URLTestHelpers.h" 29 #include "platform/testing/URLTestHelpers.h"
29 #include "platform/testing/UnitTestHelpers.h" 30 #include "platform/testing/UnitTestHelpers.h"
30 #include "platform/weborigin/KURL.h" 31 #include "platform/weborigin/KURL.h"
31 #include "public/platform/Platform.h" 32 #include "public/platform/Platform.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // The underlying |contents| for the stylesheet resource must have a 91 // The underlying |contents| for the stylesheet resource must have a
91 // matching reference status. 92 // matching reference status.
92 EXPECT_TRUE(memoryCache()->contains(imageResource)); 93 EXPECT_TRUE(memoryCache()->contains(imageResource));
93 EXPECT_FALSE(memoryCache()->contains(cssResource)); 94 EXPECT_FALSE(memoryCache()->contains(cssResource));
94 EXPECT_FALSE(contents->isReferencedFromResource()); 95 EXPECT_FALSE(contents->isReferencedFromResource());
95 EXPECT_FALSE(cssResource->restoreParsedStyleSheet(parserContext)); 96 EXPECT_FALSE(cssResource->restoreParsedStyleSheet(parserContext));
96 } 97 }
97 98
98 } // namespace 99 } // namespace
99 } // namespace blink 100 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/ProgressTrackerTest.cpp ('k') | third_party/WebKit/Source/core/page/DragController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698