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

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

Issue 2504883003: Loading: move *StyleSheetResource to core/loader/resource (Closed)
Patch Set: [rebase] 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/fetch/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"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // The underlying |contents| for the stylesheet resource must have a 90 // The underlying |contents| for the stylesheet resource must have a
91 // matching reference status. 91 // matching reference status.
92 EXPECT_TRUE(memoryCache()->contains(imageResource)); 92 EXPECT_TRUE(memoryCache()->contains(imageResource));
93 EXPECT_FALSE(memoryCache()->contains(cssResource)); 93 EXPECT_FALSE(memoryCache()->contains(cssResource));
94 EXPECT_FALSE(contents->isReferencedFromResource()); 94 EXPECT_FALSE(contents->isReferencedFromResource());
95 EXPECT_FALSE(cssResource->restoreParsedStyleSheet(parserContext)); 95 EXPECT_FALSE(cssResource->restoreParsedStyleSheet(parserContext));
96 } 96 }
97 97
98 } // namespace 98 } // namespace
99 } // namespace blink 99 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698