Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / parser / SizesAttributeParserTest.cpp
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         {" /**/ ", 500},
41         {" /**/ 300px", 300},
42         {"300px /**/ ", 300},
43         {" /**/ (min-width:500px) /**/ 300px", 300},
44         {"-100px, 200px", 200},
45         {"-50vw, 20vw", 100},
46         {"50asdf, 200px", 200},
47         {"asdf, 200px", 200},
48         {"(max-width: 3000px) 200w, 400w", 500},
49         {",, , /**/ ,200px", 200},
50         {"50vw", 250},
51         {"calc(40vw*2)", 400},
52         {"(min-width:5000px) calc(5000px/10), (min-width:500px) calc(1200px/3)", 400},
53         {"(min-width:500px) calc(1200/3)", 500},
54         {"(min-width:500px) calc(1200px/(0px*14))", 500},
55         // FIXME - test all other units, zero length and calc().
56         {0, 0} // Do not remove the terminator line.
57     };
58
59     MediaValuesCached::MediaValuesCachedData data;
60     data.viewportWidth = 500;
61     data.viewportHeight = 500;
62     data.deviceWidth = 500;
63     data.deviceHeight = 500;
64     data.devicePixelRatio = 2.0;
65     data.colorBitsPerComponent = 24;
66     data.monochromeBitsPerComponent = 0;
67     data.pointer = MediaValues::MousePointer;
68     data.defaultFontSize = 16;
69     data.threeDEnabled = true;
70     data.scanMediaType = false;
71     data.screenMediaType = true;
72     data.printMediaType = false;
73     data.strictMode = true;
74     RefPtr<MediaValues> mediaValues = MediaValuesCached::create(data);
75
76     for (unsigned i = 0; testCases[i].input; ++i) {
77         int effectiveSize = SizesAttributeParser::findEffectiveSize(testCases[i].input, mediaValues);
78         ASSERT_EQ(testCases[i].output, effectiveSize);
79     }
80 }
81
82 } // namespace