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

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

Issue 1192983003: CSS Custom Properties (Variables) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2013, Google Inc. All rights reserved. 2 * Copyright 2013, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 value.setFromNumber(3); 98 value.setFromNumber(3);
99 list.addValue(value); 99 list.addValue(value);
100 } 100 }
101 list.clearAndLeakValues(); 101 list.clearAndLeakValues();
102 ASSERT_FALSE(list.size()); 102 ASSERT_FALSE(list.size());
103 ASSERT_FALSE(list.currentIndex()); 103 ASSERT_FALSE(list.currentIndex());
104 } 104 }
105 105
106 TEST(CSSParserValuesTest, CSSParserTokenUrlConversion) 106 TEST(CSSParserValuesTest, CSSParserTokenUrlConversion)
107 { 107 {
108 CSSTokenizer::Scope scope("url(some) uRL('test') UrL( \"words\" /**/ ) URl( /**/hi/**/ )"); 108 CSSTokenizerScope scope("url(some) uRL('test') UrL( \"words\" /**/ ) URl( / **/hi/**/ )");
109 bool usesRemUnits; 109 bool usesRemUnits, usesVariables;
110 CSSParserValueList valueList(scope.tokenRange(), usesRemUnits); 110 CSSParserValueList valueList(scope.tokenRange(), usesRemUnits, usesVariables );
111 ASSERT_EQ(valueList.size(), 4u); 111 ASSERT_EQ(valueList.size(), 4u);
112 ASSERT_EQ(valueList.valueAt(0)->unit, CSSPrimitiveValue::CSS_URI); 112 ASSERT_EQ(valueList.valueAt(0)->unit, CSSPrimitiveValue::CSS_URI);
113 EXPECT_EQ(String(valueList.valueAt(0)->string), "some"); 113 EXPECT_EQ(String(valueList.valueAt(0)->string), "some");
114 ASSERT_EQ(valueList.valueAt(1)->unit, CSSPrimitiveValue::CSS_URI); 114 ASSERT_EQ(valueList.valueAt(1)->unit, CSSPrimitiveValue::CSS_URI);
115 EXPECT_EQ(String(valueList.valueAt(1)->string), "test"); 115 EXPECT_EQ(String(valueList.valueAt(1)->string), "test");
116 ASSERT_EQ(valueList.valueAt(2)->unit, CSSPrimitiveValue::CSS_URI); 116 ASSERT_EQ(valueList.valueAt(2)->unit, CSSPrimitiveValue::CSS_URI);
117 EXPECT_EQ(String(valueList.valueAt(2)->string), "words"); 117 EXPECT_EQ(String(valueList.valueAt(2)->string), "words");
118 ASSERT_EQ(valueList.valueAt(3)->unit, CSSPrimitiveValue::CSS_URI); 118 ASSERT_EQ(valueList.valueAt(3)->unit, CSSPrimitiveValue::CSS_URI);
119 EXPECT_EQ(String(valueList.valueAt(3)->string), "/**/hi/**/"); 119 EXPECT_EQ(String(valueList.valueAt(3)->string), "/**/hi/**/");
120 } 120 }
121 121
122 } // namespace 122 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698