Ignore:
Timestamp:
Sep 24, 2013, 12:14:42 PM (12 years ago)
Author:
[email protected]
Message:

[iOS] Upstream -webkit-touch-callout
https://bugs.webkit.org/show_bug.cgi?id=121507

Reviewed by Antti Koivisto.

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::ComputedStyleExtractor::propertyValue):

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseValue):

  • css/CSSPropertyNames.in: Added -webkit-touch-callout.
  • css/StyleResolver.cpp:

(WebCore::StyleResolver::applyProperty):

  • html/HTMLImageElement.cpp:

(WebCore::HTMLImageElement::willRespondToMouseClickEvents): Added.

  • html/HTMLImageElement.h:
  • rendering/style/RenderStyle.h:
  • rendering/style/StyleRareInheritedData.cpp:

(WebCore::StyleRareInheritedData::StyleRareInheritedData):
(WebCore::StyleRareInheritedData::operator==):

  • rendering/style/StyleRareInheritedData.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/CSSParser.cpp

    r156318 r156347  
    28342834        if (value->unit == CSSParserValue::Function || id == CSSValueNone)
    28352835            return parseDashboardRegions(propId, important);
     2836        break;
     2837#endif
     2838
     2839#if PLATFORM(IOS)
     2840    case CSSPropertyWebkitTouchCallout:
     2841        if (id == CSSValueDefault || id == CSSValueNone)
     2842            validPrimitive = true;
    28362843        break;
    28372844#endif
Note: See TracChangeset for help on using the changeset viewer.