| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2006, 2010, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2006, 2010, 2012 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 else if (value->isDotsPerCentimeter()) | 260 else if (value->isDotsPerCentimeter()) |
| 261 message.append(String(mediaQueryMessage).replace("%replacementUnits%", m
ediaValueDPCM).replace("%lengthUnit%", lengthUnitCentimeter)); | 261 message.append(String(mediaQueryMessage).replace("%replacementUnits%", m
ediaValueDPCM).replace("%lengthUnit%", lengthUnitCentimeter)); |
| 262 else | 262 else |
| 263 ASSERT_NOT_REACHED(); | 263 ASSERT_NOT_REACHED(); |
| 264 | 264 |
| 265 message.append(serializedExpression); | 265 message.append(serializedExpression); |
| 266 | 266 |
| 267 document->addConsoleMessage(CSSMessageSource, DebugMessageLevel, message.toS
tring()); | 267 document->addConsoleMessage(CSSMessageSource, DebugMessageLevel, message.toS
tring()); |
| 268 } | 268 } |
| 269 | 269 |
| 270 static inline bool isResolutionMediaFeature(const AtomicString& mediaFeature) | 270 static inline bool isResolutionMediaFeature(const String& mediaFeature) |
| 271 { | 271 { |
| 272 return mediaFeature == MediaFeatureNames::resolutionMediaFeature | 272 return mediaFeature == MediaFeatureNames::resolutionMediaFeature |
| 273 || mediaFeature == MediaFeatureNames::maxResolutionMediaFeature | 273 || mediaFeature == MediaFeatureNames::maxResolutionMediaFeature |
| 274 || mediaFeature == MediaFeatureNames::minResolutionMediaFeature; | 274 || mediaFeature == MediaFeatureNames::minResolutionMediaFeature; |
| 275 } | 275 } |
| 276 | 276 |
| 277 void reportMediaQueryWarningIfNeeded(Document* document, const MediaQuerySet* me
diaQuerySet) | 277 void reportMediaQueryWarningIfNeeded(Document* document, const MediaQuerySet* me
diaQuerySet) |
| 278 { | 278 { |
| 279 if (!mediaQuerySet || !document) | 279 if (!mediaQuerySet || !document) |
| 280 return; | 280 return; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 299 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssV
alue); | 299 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssV
alue); |
| 300 if (primitiveValue->isDotsPerInch() || primitiveValue->isDot
sPerCentimeter()) | 300 if (primitiveValue->isDotsPerInch() || primitiveValue->isDot
sPerCentimeter()) |
| 301 addResolutionWarningMessageToConsole(document, mediaQuer
ySet->mediaText(), primitiveValue); | 301 addResolutionWarningMessageToConsole(document, mediaQuer
ySet->mediaText(), primitiveValue); |
| 302 } | 302 } |
| 303 } | 303 } |
| 304 } | 304 } |
| 305 } | 305 } |
| 306 } | 306 } |
| 307 | 307 |
| 308 } | 308 } |
| OLD | NEW |