CSSParserMode.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
  3. * Copyright (C) 2012 Apple Inc. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. *
  9. * 1. Redistributions of source code must retain the above
  10. * copyright notice, this list of conditions and the following
  11. * disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above
  13. * copyright notice, this list of conditions and the following
  14. * disclaimer in the documentation and/or other materials
  15. * provided with the distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
  18. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  20. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
  21. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
  22. * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  23. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  24. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  26. * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  27. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. * SUCH DAMAGE.
  29. */
  30. #ifndef CSSParserMode_h
  31. #define CSSParserMode_h
  32. #include "KURL.h"
  33. namespace WebCore {
  34. class Document;
  35. enum CSSParserMode {
  36. CSSQuirksMode,
  37. CSSStrictMode,
  38. // SVG should always be in strict mode. For SVG attributes, the rules differ to strict sometimes.
  39. SVGAttributeMode
  40. };
  41. inline CSSParserMode strictToCSSParserMode(bool inStrictMode)
  42. {
  43. return inStrictMode ? CSSStrictMode : CSSQuirksMode;
  44. }
  45. inline bool isStrictParserMode(CSSParserMode cssParserMode)
  46. {
  47. return cssParserMode == CSSStrictMode || cssParserMode == SVGAttributeMode;
  48. }
  49. struct CSSParserContext {
  50. WTF_MAKE_FAST_ALLOCATED;
  51. public:
  52. CSSParserContext(CSSParserMode, const KURL& baseURL = KURL());
  53. CSSParserContext(Document*, const KURL& baseURL = KURL(), const String& charset = emptyString());
  54. KURL baseURL;
  55. String charset;
  56. CSSParserMode mode;
  57. bool isHTMLDocument;
  58. bool isCSSCustomFilterEnabled;
  59. bool isCSSStickyPositionEnabled;
  60. bool isCSSRegionsEnabled;
  61. bool isCSSCompositingEnabled;
  62. bool isCSSGridLayoutEnabled;
  63. #if ENABLE(CSS_VARIABLES)
  64. bool isCSSVariablesEnabled;
  65. #endif
  66. bool needsSiteSpecificQuirks;
  67. bool enforcesCSSMIMETypeInNoQuirksMode;
  68. bool useLegacyBackgroundSizeShorthandBehavior;
  69. };
  70. bool operator==(const CSSParserContext&, const CSSParserContext&);
  71. inline bool operator!=(const CSSParserContext& a, const CSSParserContext& b) { return !(a == b); }
  72. const CSSParserContext& strictCSSParserContext();
  73. };
  74. #endif // CSSParserMode_h