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

Side by Side Diff: Source/core/html/LinkRelAttributeTest.cpp

Issue 132723002: Remove compile time flag TOUCH_ICON_LOADING and use runtime flag instead. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix unit test case Created 6 years, 11 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/html/LinkRelAttribute.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013, Google Inc. All rights reserved. 2 * Copyright (c) 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 12 matching lines...) Expand all
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "core/html/LinkRelAttribute.h" 32 #include "core/html/LinkRelAttribute.h"
33 #include "RuntimeEnabledFeatures.h"
33 34
34 #include "wtf/text/CString.h" 35 #include "wtf/text/CString.h"
35 #include <gtest/gtest.h> 36 #include <gtest/gtest.h>
36 37
37 using namespace WebCore; 38 using namespace WebCore;
38 39
39 namespace { 40 namespace {
40 41
41 static inline void testLinkRelAttribute(String value, bool isStyleSheet, IconTyp e iconType, bool isAlternate, bool isDNSPrefetch, bool isLinkSubresource, bool i sLinkPrerender, bool isImport = false) 42 static inline void testLinkRelAttribute(String value, bool isStyleSheet, IconTyp e iconType, bool isAlternate, bool isDNSPrefetch, bool isLinkSubresource, bool i sLinkPrerender, bool isImport = false)
42 { 43 {
(...skipping 10 matching lines...) Expand all
53 TEST(CoreLinkRelAttribute, Constructor) 54 TEST(CoreLinkRelAttribute, Constructor)
54 { 55 {
55 testLinkRelAttribute("stylesheet", true, InvalidIcon, false, false, false, f alse); 56 testLinkRelAttribute("stylesheet", true, InvalidIcon, false, false, false, f alse);
56 testLinkRelAttribute("sTyLeShEeT", true, InvalidIcon, false, false, false, f alse); 57 testLinkRelAttribute("sTyLeShEeT", true, InvalidIcon, false, false, false, f alse);
57 58
58 testLinkRelAttribute("icon", false, Favicon, false, false, false, false); 59 testLinkRelAttribute("icon", false, Favicon, false, false, false, false);
59 testLinkRelAttribute("iCoN", false, Favicon, false, false, false, false); 60 testLinkRelAttribute("iCoN", false, Favicon, false, false, false, false);
60 testLinkRelAttribute("shortcut icon", false, Favicon, false, false, false, f alse); 61 testLinkRelAttribute("shortcut icon", false, Favicon, false, false, false, f alse);
61 testLinkRelAttribute("sHoRtCuT iCoN", false, Favicon, false, false, false, f alse); 62 testLinkRelAttribute("sHoRtCuT iCoN", false, Favicon, false, false, false, f alse);
62 63
63 #if ENABLE(TOUCH_ICON_LOADING) 64 if (RuntimeEnabledFeatures::touchIconLoadingEnabled()) {
64 testLinkRelAttribute("apple-touch-icon", false, TouchIcon, false, false, fal se, false); 65 testLinkRelAttribute("apple-touch-icon", false, TouchIcon, false, false, false, false);
65 testLinkRelAttribute("aPpLe-tOuCh-IcOn", false, TouchIcon, false, false, fal se, false); 66 testLinkRelAttribute("aPpLe-tOuCh-IcOn", false, TouchIcon, false, false, false, false);
66 67
67 testLinkRelAttribute("apple-touch-icon-precomposed", false, TouchPrecomposed Icon, false, false, false, false); 68 testLinkRelAttribute("apple-touch-icon-precomposed", false, TouchPrecomp osedIcon, false, false, false, false);
68 testLinkRelAttribute("aPpLe-tOuCh-IcOn-pReCoMpOsEd", false, TouchPrecomposed Icon, false, false, false, false); 69 testLinkRelAttribute("aPpLe-tOuCh-IcOn-pReCoMpOsEd", false, TouchPrecomp osedIcon, false, false, false, false);
69 #endif 70 }
70 71
71 testLinkRelAttribute("dns-prefetch", false, InvalidIcon, false, true, false, false); 72 testLinkRelAttribute("dns-prefetch", false, InvalidIcon, false, true, false, false);
72 testLinkRelAttribute("dNs-pReFeTcH", false, InvalidIcon, false, true, false, false); 73 testLinkRelAttribute("dNs-pReFeTcH", false, InvalidIcon, false, true, false, false);
73 74
74 testLinkRelAttribute("alternate stylesheet", true, InvalidIcon, true, false, false, false); 75 testLinkRelAttribute("alternate stylesheet", true, InvalidIcon, true, false, false, false);
75 testLinkRelAttribute("stylesheet alternate", true, InvalidIcon, true, false, false, false); 76 testLinkRelAttribute("stylesheet alternate", true, InvalidIcon, true, false, false, false);
76 testLinkRelAttribute("aLtErNaTe sTyLeShEeT", true, InvalidIcon, true, false, false, false); 77 testLinkRelAttribute("aLtErNaTe sTyLeShEeT", true, InvalidIcon, true, false, false, false);
77 testLinkRelAttribute("sTyLeShEeT aLtErNaTe", true, InvalidIcon, true, false, false, false); 78 testLinkRelAttribute("sTyLeShEeT aLtErNaTe", true, InvalidIcon, true, false, false, false);
78 79
79 testLinkRelAttribute("stylesheet icon prerender aLtErNaTe", true, Favicon, t rue, false, false, true); 80 testLinkRelAttribute("stylesheet icon prerender aLtErNaTe", true, Favicon, t rue, false, false, true);
80 testLinkRelAttribute("alternate subresource", false, InvalidIcon, true, fals e, true, false); 81 testLinkRelAttribute("alternate subresource", false, InvalidIcon, true, fals e, true, false);
81 testLinkRelAttribute("alternate icon stylesheet", true, Favicon, true, false , false, false); 82 testLinkRelAttribute("alternate icon stylesheet", true, Favicon, true, false , false, false);
82 83
83 testLinkRelAttribute("import", false, InvalidIcon, false, false, false, fals e, true); 84 testLinkRelAttribute("import", false, InvalidIcon, false, false, false, fals e, true);
84 // "import" is mutually exclusive and "stylesheet" wins when they conflict. 85 // "import" is mutually exclusive and "stylesheet" wins when they conflict.
85 testLinkRelAttribute("stylesheet import", true, InvalidIcon, false, false, f alse, false, false); 86 testLinkRelAttribute("stylesheet import", true, InvalidIcon, false, false, f alse, false, false);
86 } 87 }
87 88
88 } // namespace 89 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/LinkRelAttribute.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698