OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "config.h" | 5 #include "config.h" |
6 #include "core/css/parser/SizesAttributeParser.h" | 6 #include "core/css/parser/SizesAttributeParser.h" |
7 | 7 |
8 #include "core/MediaTypeNames.h" | 8 #include "core/MediaTypeNames.h" |
9 #include "core/css/MediaValuesCached.h" | 9 #include "core/css/MediaValuesCached.h" |
10 | 10 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 data.deviceHeight = 500; | 83 data.deviceHeight = 500; |
84 data.devicePixelRatio = 2.0; | 84 data.devicePixelRatio = 2.0; |
85 data.colorBitsPerComponent = 24; | 85 data.colorBitsPerComponent = 24; |
86 data.monochromeBitsPerComponent = 0; | 86 data.monochromeBitsPerComponent = 0; |
87 data.primaryPointerType = PointerTypeFine; | 87 data.primaryPointerType = PointerTypeFine; |
88 data.defaultFontSize = 16; | 88 data.defaultFontSize = 16; |
89 data.threeDEnabled = true; | 89 data.threeDEnabled = true; |
90 data.mediaType = MediaTypeNames::screen; | 90 data.mediaType = MediaTypeNames::screen; |
91 data.strictMode = true; | 91 data.strictMode = true; |
92 data.displayMode = WebDisplayModeBrowser; | 92 data.displayMode = WebDisplayModeBrowser; |
93 RefPtr<MediaValues> mediaValues = MediaValuesCached::create(data); | 93 RefPtrWillBeRawPtr<MediaValues> mediaValues = MediaValuesCached::create(data
); |
94 | 94 |
95 for (unsigned i = 0; testCases[i].input; ++i) { | 95 for (unsigned i = 0; testCases[i].input; ++i) { |
96 SizesAttributeParser parser(mediaValues, testCases[i].input); | 96 SizesAttributeParser parser(mediaValues, testCases[i].input); |
97 ASSERT_EQ(testCases[i].effectiveSize, parser.length()); | 97 ASSERT_EQ(testCases[i].effectiveSize, parser.length()); |
98 } | 98 } |
99 } | 99 } |
100 | 100 |
101 } // namespace | 101 } // namespace |
OLD | NEW |