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

Side by Side Diff: Source/core/css/parser/SizesAttributeParserTest.cpp

Issue 224733011: A sizes attribute parser (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed rebase Created 6 years, 8 months 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
« no previous file with comments | « Source/core/css/parser/SizesAttributeParser.cpp ('k') | Source/core/html/HTMLImageElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "core/css/parser/SizesAttributeParser.h"
7
8 #include "core/css/MediaValuesCached.h"
9
10 #include <gtest/gtest.h>
11
12 namespace WebCore {
13
14 typedef struct {
15 const char* input;
16 const int output;
17 } TestCase;
18
19 TEST(SizesAttributeParserTest, Basic)
20 {
21 // The first string represents the input string.
22 // The second string represents the output string, if present.
23 // Otherwise, the output string is identical to the first string.
24 TestCase testCases[] = {
25 {"screen", 500},
26 {"(min-width:500px)", 500},
27 {"(min-width:500px) 200px", 200},
28 {"(min-width:500px) 50vw", 250},
29 {"(min-width:500px) 200px, 400px", 200},
30 {"400px, (min-width:500px) 200px", 400},
31 {"(min-width:5000px) 200px, 400px", 400},
32 {"(blalbadfsdf) 200px, 400px", 400},
33 {"0", 500},
34 {"-0", 500},
35 {"1", 500},
36 {"300px, 400px", 300},
37 {"(min-width:5000px) 200px, (min-width:500px) 400px", 400},
38 {"", 500},
39 {" /**/ ", 500},
40 {" /**/ 300px", 300},
41 {"300px /**/ ", 300},
42 {" /**/ (min-width:500px) /**/ 300px", 300},
43 {"-100px, 200px", 200},
44 {"-50vw, 20vw", 100},
45 {"50asdf, 200px", 200},
46 {"asdf, 200px", 200},
47 {"(max-width: 3000px) 200w, 400w", 500},
48 {",, , /**/ ,200px", 200},
49 // FIXME - test all other units, zero length and calc().
50 {0, 0} // Do not remove the terminator line.
51 };
52
53 MediaValuesCached::MediaValuesCachedData data;
54 data.viewportWidth = 500;
55 data.viewportHeight = 500;
56 data.deviceWidth = 500;
57 data.deviceHeight = 500;
58 data.devicePixelRatio = 2.0;
59 data.colorBitsPerComponent = 24;
60 data.monochromeBitsPerComponent = 0;
61 data.pointer = MediaValues::MousePointer;
62 data.defaultFontSize = 16;
63 data.computedFontSize = 16;
64 data.threeDEnabled = true;
65 data.scanMediaType = false;
66 data.screenMediaType = true;
67 data.printMediaType = false;
68 data.strictMode = true;
69 RefPtr<MediaValues> mediaValues = MediaValuesCached::create(data);
70
71 for (unsigned i = 0; testCases[i].input; ++i) {
72 int effectiveSize = SizesAttributeParser::findEffectiveSize(testCases[i] .input, mediaValues);
73 ASSERT_EQ(testCases[i].output, effectiveSize);
74 }
75 }
76
77 } // namespace
OLDNEW
« no previous file with comments | « Source/core/css/parser/SizesAttributeParser.cpp ('k') | Source/core/html/HTMLImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698