Changeset 163717 in webkit
- Timestamp:
- Feb 8, 2014, 11:58:21 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 38 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r163713 r163717 1 2014-02-08 Dan Bernstein <mitz@apple.com> 2 3 Remove client-drawn highlights (-webkit-highlight, WebHTMLHighlighter) 4 https://bugs.webkit.org/show_bug.cgi?id=128456 5 6 Reviewed by Anders Carlsson. 7 8 * fast/css/getComputedStyle/computed-style-expected.txt: 9 * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: 10 * svg/css/getComputedStyle-basic-expected.txt: 11 1 12 2014-02-08 Zan Dobersek <zdobersek@igalia.com> 2 13 -
trunk/LayoutTests/fast/css/getComputedStyle/computed-style-expected.txt
r162135 r163717 153 153 -webkit-font-smoothing: auto; 154 154 -webkit-font-variant-ligatures: normal; 155 -webkit-highlight: none;156 155 -webkit-hyphenate-character: auto; 157 156 -webkit-hyphenate-limit-after: auto; -
trunk/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt
r162135 r163717 152 152 -webkit-font-smoothing: auto 153 153 -webkit-font-variant-ligatures: normal 154 -webkit-highlight: none155 154 -webkit-hyphenate-character: auto 156 155 -webkit-hyphenate-limit-after: auto -
trunk/LayoutTests/svg/css/getComputedStyle-basic-expected.txt
r162135 r163717 303 303 rect: style.getPropertyValue(-webkit-font-variant-ligatures) : normal 304 304 rect: style.getPropertyCSSValue(-webkit-font-variant-ligatures) : [object CSSPrimitiveValue] 305 rect: style.getPropertyValue(-webkit-highlight) : none306 rect: style.getPropertyCSSValue(-webkit-highlight) : [object CSSPrimitiveValue]307 305 rect: style.getPropertyValue(-webkit-hyphenate-character) : auto 308 306 rect: style.getPropertyCSSValue(-webkit-hyphenate-character) : [object CSSPrimitiveValue] … … 799 797 g: style.getPropertyValue(-webkit-font-variant-ligatures) : normal 800 798 g: style.getPropertyCSSValue(-webkit-font-variant-ligatures) : [object CSSPrimitiveValue] 801 g: style.getPropertyValue(-webkit-highlight) : none802 g: style.getPropertyCSSValue(-webkit-highlight) : [object CSSPrimitiveValue]803 799 g: style.getPropertyValue(-webkit-hyphenate-character) : auto 804 800 g: style.getPropertyCSSValue(-webkit-hyphenate-character) : [object CSSPrimitiveValue] -
trunk/Source/WebCore/ChangeLog
r163716 r163717 1 2014-02-08 Dan Bernstein <mitz@apple.com> 2 3 Remove client-drawn highlights (-webkit-highlight, WebHTMLHighlighter) 4 https://bugs.webkit.org/show_bug.cgi?id=128456 5 6 Reviewed by Anders Carlsson. 7 8 Updated fast/css/getComputedStyle and svg/css results. 9 10 * css/CSSComputedStyleDeclaration.cpp: 11 (WebCore::ComputedStyleExtractor::propertyValue): Removed CSSPropertyWebKitHighlight case. 12 * css/CSSParser.cpp: 13 (WebCore::CSSParser::parseValue): Ditto. 14 * css/CSSPropertyNames.in: Removed -webkit-highlight. 15 * css/DeprecatedStyleBuilder.cpp: 16 (WebCore::DeprecatedStyleBuilder::DeprecatedStyleBuilder): Removed 17 CSSPropertyWebKitHighlight handler. 18 * css/StyleResolver.cpp: 19 (WebCore::StyleResolver::applyProperty): Removed CSSPropertyWebKitHighlight case. 20 * page/Chrome.cpp: Removed customHighlightRect and paintCustomHighlight. 21 * page/ChromeClient.h: Ditto. 22 * rendering/InlineTextBox.cpp: 23 (WebCore::InlineTextBox::paint): Removed painting custom highlight. 24 * rendering/InlineTextBox.h: 25 * rendering/RenderBlockLineLayout.cpp: 26 (WebCore::RenderBlockFlow::createLineBoxesFromBidiRuns): Removed adding overflow for custom 27 highlights. 28 * rendering/RenderBox.cpp: Removed paintCustomHighlight. 29 * rendering/RenderBox.h: 30 * rendering/RenderImage.cpp: 31 (WebCore::RenderImage::paintReplaced): Removed painting custom highlight. 32 * rendering/RenderListMarker.cpp: 33 (WebCore::RenderListMarker::paint): Ditto. 34 * rendering/RenderSnapshottedPlugIn.cpp: 35 (WebCore::RenderSnapshottedPlugIn::paintSnapshot): Ditto. 36 * rendering/RenderWidget.cpp: 37 (WebCore::RenderWidget::paint): Ditto. 38 * rendering/RootInlineBox.cpp: 39 (WebCore::RootInlineBox::paint): Ditto. 40 * rendering/RootInlineBox.h: 41 * rendering/style/RenderStyle.cpp: 42 (WebCore::RenderStyle::changeRequiresLayout): Removed highlight comparison. 43 * rendering/style/RenderStyle.h: 44 * rendering/style/StyleRareInheritedData.cpp: 45 (WebCore::StyleRareInheritedData::StyleRareInheritedData): Removed initializer. 46 (WebCore::StyleRareInheritedData::operator==): Removed highlight comparison. 47 * rendering/style/StyleRareInheritedData.h: Removed highlight member variable. 48 1 49 2014-02-08 Dan Bernstein <mitz@apple.com> 2 50 -
trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
r163633 r163717 291 291 CSSPropertyWebkitGridRowEnd, 292 292 CSSPropertyWebkitGridRowStart, 293 CSSPropertyWebkitHighlight,294 293 CSSPropertyWebkitHyphenateCharacter, 295 294 CSSPropertyWebkitHyphenateLimitAfter, … … 2119 2118 } 2120 2119 return zoomAdjustedPixelValueForLength(style->height(), style.get()); 2121 case CSSPropertyWebkitHighlight:2122 if (style->highlight() == nullAtom)2123 return cssValuePool().createIdentifierValue(CSSValueNone);2124 return cssValuePool().createValue(style->highlight(), CSSPrimitiveValue::CSS_STRING);2125 2120 case CSSPropertyWebkitHyphens: 2126 2121 return cssValuePool().createValue(style->hyphens()); -
trunk/Source/WebCore/css/CSSParser.cpp
r163633 r163717 2685 2685 case CSSPropertyWebkitFontSizeDelta: // <length> 2686 2686 validPrimitive = validUnit(value, FLength); 2687 break;2688 2689 case CSSPropertyWebkitHighlight:2690 if (id == CSSValueNone || value->unit == CSSPrimitiveValue::CSS_STRING)2691 validPrimitive = true;2692 2687 break; 2693 2688 -
trunk/Source/WebCore/css/CSSPropertyNames.in
r163633 r163717 313 313 -webkit-grid-template 314 314 -webkit-grid-auto-flow 315 -webkit-highlight [Inherited]316 315 -webkit-hyphenate-character [Inherited] 317 316 -webkit-hyphenate-limit-after [Inherited] -
trunk/Source/WebCore/css/DeprecatedStyleBuilder.cpp
r163633 r163717 2522 2522 setPropertyHandler(CSSPropertyWebkitFontSmoothing, ApplyPropertyFont<FontSmoothingMode, &FontDescription::fontSmoothing, &FontDescription::setFontSmoothing, AutoSmoothing>::createHandler()); 2523 2523 setPropertyHandler(CSSPropertyWebkitFontVariantLigatures, ApplyPropertyFontVariantLigatures::createHandler()); 2524 setPropertyHandler(CSSPropertyWebkitHighlight, ApplyPropertyString<MapNoneToNull, &RenderStyle::highlight, &RenderStyle::setHighlight, &RenderStyle::initialHighlight>::createHandler());2525 2524 setPropertyHandler(CSSPropertyWebkitHyphenateCharacter, ApplyPropertyString<MapAutoToNull, &RenderStyle::hyphenationString, &RenderStyle::setHyphenationString, &RenderStyle::initialHyphenationString>::createHandler()); 2526 2525 setPropertyHandler(CSSPropertyWebkitHyphenateLimitAfter, ApplyPropertyNumber<short, &RenderStyle::hyphenationLimitAfter, &RenderStyle::setHyphenationLimitAfter, &RenderStyle::initialHyphenationLimitAfter>::createHandler()); -
trunk/Source/WebCore/css/StyleResolver.cpp
r163625 r163717 2930 2930 case CSSPropertyWebkitFontSmoothing: 2931 2931 case CSSPropertyWebkitFontVariantLigatures: 2932 case CSSPropertyWebkitHighlight:2933 2932 case CSSPropertyWebkitHyphenateCharacter: 2934 2933 case CSSPropertyWebkitHyphenateLimitAfter: -
trunk/Source/WebCore/page/Chrome.cpp
r163483 r163717 560 560 } 561 561 562 FloatRect ChromeClient::customHighlightRect(Node*, const AtomicString&, const FloatRect&)563 {564 return FloatRect();565 }566 567 void ChromeClient::paintCustomHighlight(Node*, const AtomicString&, const FloatRect&, const FloatRect&, bool, bool)568 {569 }570 571 562 bool ChromeClient::shouldReplaceWithGeneratedFileForUpload(const String&, String&) 572 563 { -
trunk/Source/WebCore/page/ChromeClient.h
r163591 r163717 220 220 virtual void populateVisitedLinks(); 221 221 222 virtual FloatRect customHighlightRect(Node*, const AtomicString& type, const FloatRect& lineRect);223 virtual void paintCustomHighlight(Node*, const AtomicString& type, const FloatRect& boxRect, const FloatRect& lineRect, bool behindText, bool entireLine);224 225 222 virtual bool shouldReplaceWithGeneratedFileForUpload(const String& path, String& generatedFilename); 226 223 virtual String generateReplacementFile(const String& path); -
trunk/Source/WebCore/rendering/InlineTextBox.cpp
r162579 r163717 586 586 // and composition underlines. 587 587 if (paintInfo.phase != PaintPhaseSelection && paintInfo.phase != PaintPhaseTextClip && !isPrinting) { 588 #if PLATFORM(MAC)589 // Custom highlighters go behind everything else.590 if (lineStyle.highlight() != nullAtom && !context->paintingDisabled())591 paintCustomHighlight(adjustedPaintOffset, lineStyle.highlight());592 #endif593 594 588 if (containsComposition && !useCustomUnderlines) 595 589 paintCompositionBackground(context, boxOrigin, lineStyle, font, … … 814 808 context->drawHighlightForText(font, constructTextRun(style, font), localOrigin, selHeight, c, style.colorSpace(), sPos, ePos); 815 809 } 816 817 #if PLATFORM(MAC)818 819 void InlineTextBox::paintCustomHighlight(const LayoutPoint& paintOffset, const AtomicString& type)820 {821 Page* page = renderer().frame().page();822 if (!page)823 return;824 825 const RootInlineBox& rootBox = root();826 FloatRect rootRect(paintOffset.x() + rootBox.x(), paintOffset.y() + selectionTop(), rootBox.logicalWidth(), selectionHeight());827 FloatRect textRect(paintOffset.x() + x(), rootRect.y(), logicalWidth(), rootRect.height());828 829 page->chrome().client().paintCustomHighlight(renderer().textNode(), type, textRect, rootRect, true, false);830 }831 832 #endif833 810 834 811 static StrokeStyle textDecorationStyleToStrokeStyle(TextDecorationStyle decorationStyle) -
trunk/Source/WebCore/rendering/InlineTextBox.h
r163469 r163717 166 166 void paintDocumentMarkers(GraphicsContext*, const FloatPoint& boxOrigin, const RenderStyle&, const Font&, bool background); 167 167 void paintCompositionUnderline(GraphicsContext*, const FloatPoint& boxOrigin, const CompositionUnderline&); 168 #if PLATFORM(MAC)169 void paintCustomHighlight(const LayoutPoint&, const AtomicString& type);170 #endif171 168 172 169 private: -
trunk/Source/WebCore/rendering/RenderBlockLineLayout.cpp
r163631 r163717 1017 1017 lineBox->computeOverflow(lineBox->lineTop(), lineBox->lineBottom(), textBoxDataMap); 1018 1018 1019 #if PLATFORM(MAC)1020 // Highlight acts as an overflow inflation.1021 if (style().highlight() != nullAtom)1022 lineBox->addHighlightOverflow();1023 #endif1024 1019 return lineBox; 1025 1020 } -
trunk/Source/WebCore/rendering/RenderBox.cpp
r163617 r163717 1622 1622 return false; 1623 1623 } 1624 1625 #if PLATFORM(MAC)1626 1627 void RenderBox::paintCustomHighlight(const LayoutPoint& paintOffset, const AtomicString& type, bool behindText)1628 {1629 Page* page = frame().page();1630 if (!page)1631 return;1632 1633 InlineBox* boxWrap = inlineBoxWrapper();1634 RootInlineBox* r = boxWrap ? &boxWrap->root() : 0;1635 if (r) {1636 FloatRect rootRect(paintOffset.x() + r->x(), paintOffset.y() + r->selectionTop(), r->logicalWidth(), r->selectionHeight());1637 FloatRect imageRect(paintOffset.x() + x(), rootRect.y(), width(), rootRect.height());1638 page->chrome().client().paintCustomHighlight(element(), type, imageRect, rootRect, behindText, false);1639 } else {1640 FloatRect imageRect(paintOffset.x() + x(), paintOffset.y() + y(), width(), height());1641 page->chrome().client().paintCustomHighlight(element(), type, imageRect, imageRect, behindText, false);1642 }1643 }1644 1645 #endif1646 1624 1647 1625 bool RenderBox::pushContentsClip(PaintInfo& paintInfo, const LayoutPoint& accumulatedOffset) -
trunk/Source/WebCore/rendering/RenderBox.h
r163427 r163717 635 635 bool backgroundHasOpaqueTopLayer() const; 636 636 637 #if PLATFORM(MAC)638 void paintCustomHighlight(const LayoutPoint&, const AtomicString& type, bool behindText);639 #endif640 641 637 void computePositionedLogicalWidth(LogicalExtentComputedValues&, RenderRegion* = 0) const; 642 638 -
trunk/Source/WebCore/rendering/RenderImage.cpp
r163440 r163717 464 464 } 465 465 466 #if PLATFORM(MAC)467 if (style().highlight() != nullAtom && !paintInfo.context->paintingDisabled())468 paintCustomHighlight(toPoint(paintOffset - location()), style().highlight(), true);469 #endif470 471 466 LayoutRect contentRect = contentBoxRect(); 472 467 contentRect.moveBy(paintOffset); -
trunk/Source/WebCore/rendering/RenderListMarker.cpp
r161851 r163717 1197 1197 1198 1198 if (isImage()) { 1199 #if PLATFORM(MAC)1200 if (style().highlight() != nullAtom && !paintInfo.context->paintingDisabled())1201 paintCustomHighlight(paintOffset, style().highlight(), true);1202 #endif1203 1199 context->drawImage(m_image->image(this, marker.size()).get(), style().colorSpace(), marker); 1204 1200 if (selectionState() != SelectionNone) { … … 1209 1205 return; 1210 1206 } 1211 1212 #if PLATFORM(MAC)1213 // FIXME: paint gap between marker and list item proper1214 if (style().highlight() != nullAtom && !paintInfo.context->paintingDisabled())1215 paintCustomHighlight(paintOffset, style().highlight(), true);1216 #endif1217 1207 1218 1208 if (selectionState() != SelectionNone) { -
trunk/Source/WebCore/rendering/RenderSnapshottedPlugIn.cpp
r162356 r163717 124 124 125 125 GraphicsContext* context = paintInfo.context; 126 #if PLATFORM(MAC)127 if (style().highlight() != nullAtom && !context->paintingDisabled())128 paintCustomHighlight(toPoint(paintOffset - location()), style().highlight(), true);129 #endif130 126 131 127 LayoutSize contentSize(cWidth, cHeight); -
trunk/Source/WebCore/rendering/RenderWidget.cpp
r163079 r163717 269 269 return; 270 270 271 #if PLATFORM(MAC)272 if (style().highlight() != nullAtom && !paintInfo.context->paintingDisabled())273 paintCustomHighlight(paintOffset, style().highlight(), true);274 #endif275 276 271 if (style().hasBorderRadius()) { 277 272 LayoutRect borderRect = LayoutRect(adjustedPaintOffset, size()); -
trunk/Source/WebCore/rendering/RootInlineBox.cpp
r163440 r163717 169 169 } 170 170 171 #if PLATFORM(MAC)172 173 void RootInlineBox::addHighlightOverflow()174 {175 Page* page = renderer().frame().page();176 if (!page)177 return;178 179 // Highlight acts as a selection inflation.180 FloatRect rootRect(0, selectionTop(), logicalWidth(), selectionHeight());181 IntRect inflatedRect = enclosingIntRect(page->chrome().client().customHighlightRect(renderer().element(), renderer().style().highlight(), rootRect));182 setOverflowFromLogicalRects(inflatedRect, inflatedRect, lineTop(), lineBottom());183 }184 185 void RootInlineBox::paintCustomHighlight(PaintInfo& paintInfo, const LayoutPoint& paintOffset, const AtomicString& highlightType)186 {187 if (!paintInfo.shouldPaintWithinRoot(renderer()) || renderer().style().visibility() != VISIBLE || paintInfo.phase != PaintPhaseForeground)188 return;189 190 Page* page = renderer().frame().page();191 if (!page)192 return;193 194 // Get the inflated rect so that we can properly hit test.195 FloatRect rootRect(paintOffset.x() + x(), paintOffset.y() + selectionTop(), logicalWidth(), selectionHeight());196 FloatRect inflatedRect = page->chrome().client().customHighlightRect(renderer().element(), highlightType, rootRect);197 if (inflatedRect.intersects(paintInfo.rect))198 page->chrome().client().paintCustomHighlight(renderer().element(), highlightType, rootRect, rootRect, false, true);199 }200 201 #endif202 203 171 void RootInlineBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, LayoutUnit lineTop, LayoutUnit lineBottom) 204 172 { … … 209 177 InlineFlowBox::paint(paintInfo, paintOffset, lineTop, lineBottom); 210 178 paintEllipsisBox(paintInfo, paintOffset, lineTop, lineBottom); 211 #if PLATFORM(MAC)212 const RenderStyle& lineStyle = this->lineStyle();213 if (lineStyle.highlight() != nullAtom && !paintInfo.context->paintingDisabled())214 paintCustomHighlight(paintInfo, paintOffset, lineStyle.highlight());215 #endif216 179 } 217 180 -
trunk/Source/WebCore/rendering/RootInlineBox.h
r162579 r163717 118 118 virtual int baselinePosition(FontBaseline baselineType) const override final; 119 119 virtual LayoutUnit lineHeight() const override final; 120 121 #if PLATFORM(MAC)122 void addHighlightOverflow();123 void paintCustomHighlight(PaintInfo&, const LayoutPoint&, const AtomicString& highlightType);124 #endif125 120 126 121 virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom) override; -
trunk/Source/WebCore/rendering/style/RenderStyle.cpp
r163440 r163717 482 482 483 483 if (rareInheritedData.get() != other->rareInheritedData.get()) { 484 if (rareInheritedData->highlight != other->rareInheritedData->highlight 485 || rareInheritedData->indent != other->rareInheritedData->indent 484 if (rareInheritedData->indent != other->rareInheritedData->indent 486 485 #if ENABLE(CSS3_TEXT) 487 486 || rareInheritedData->m_textAlignLast != other->rareInheritedData->m_textAlignLast -
trunk/Source/WebCore/rendering/style/RenderStyle.h
r163440 r163717 815 815 ENBSPMode nbspMode() const { return static_cast<ENBSPMode>(rareInheritedData->nbspMode); } 816 816 LineBreak lineBreak() const { return static_cast<LineBreak>(rareInheritedData->lineBreak); } 817 const AtomicString& highlight() const { return rareInheritedData->highlight; }818 817 Hyphens hyphens() const { return static_cast<Hyphens>(rareInheritedData->hyphens); } 819 818 short hyphenationLimitBefore() const { return rareInheritedData->hyphenationLimitBefore; } … … 1334 1333 void setNBSPMode(ENBSPMode b) { SET_VAR(rareInheritedData, nbspMode, b); } 1335 1334 void setLineBreak(LineBreak b) { SET_VAR(rareInheritedData, lineBreak, b); } 1336 void setHighlight(const AtomicString& h) { SET_VAR(rareInheritedData, highlight, h); }1337 1335 void setHyphens(Hyphens h) { SET_VAR(rareInheritedData, hyphens, h); } 1338 1336 void setHyphenationLimitBefore(short limit) { SET_VAR(rareInheritedData, hyphenationLimitBefore, limit); } … … 1716 1714 static ENBSPMode initialNBSPMode() { return NBNORMAL; } 1717 1715 static LineBreak initialLineBreak() { return LineBreakAuto; } 1718 static const AtomicString& initialHighlight() { return nullAtom; }1719 1716 static ESpeak initialSpeak() { return SpeakNormal; } 1720 1717 static Hyphens initialHyphens() { return HyphensManual; } -
trunk/Source/WebCore/rendering/style/StyleRareInheritedData.cpp
r162579 r163717 148 148 , visitedLinkTextEmphasisColor(o.visitedLinkTextEmphasisColor) 149 149 , textShadow(o.textShadow ? adoptPtr(new ShadowData(*o.textShadow)) : nullptr) 150 , highlight(o.highlight)151 150 , cursorData(o.cursorData) 152 151 , indent(o.indent) … … 262 261 #endif 263 262 && shadowDataEquivalent(o) 264 && highlight == o.highlight265 263 && cursorDataEquivalent(cursorData.get(), o.cursorData.get()) 266 264 && indent == o.indent -
trunk/Source/WebCore/rendering/style/StyleRareInheritedData.h
r162579 r163717 71 71 72 72 OwnPtr<ShadowData> textShadow; // Our text shadow information for shadowed text drawing. 73 AtomicString highlight; // Apple-specific extension for custom highlight rendering.74 73 75 74 RefPtr<CursorList> cursorData; -
trunk/Source/WebInspectorUI/ChangeLog
r163637 r163717 1 2014-02-08 Dan Bernstein <mitz@apple.com> 2 3 Remove client-drawn highlights (-webkit-highlight, WebHTMLHighlighter) 4 https://bugs.webkit.org/show_bug.cgi?id=128456 5 6 Reviewed by Anders Carlsson. 7 8 * UserInterface/CSSKeywordCompletions.js: Removed -webkit-highlight. 9 1 10 2014-02-07 Brian Burg <bburg@apple.com> 2 11 -
trunk/Source/WebInspectorUI/UserInterface/CSSKeywordCompletions.js
r163633 r163717 81 81 "word-spacing", "word-wrap", "writing-mode", "-webkit-aspect-ratio", "-webkit-border-horizontal-spacing", 82 82 "-webkit-border-vertical-spacing", "-webkit-box-direction", "-webkit-color-correction", "-webkit-font-feature-settings", 83 "-webkit-font-kerning", "-webkit-font-smoothing", "-webkit-font-variant-ligatures", "-webkit-highlight",83 "-webkit-font-kerning", "-webkit-font-smoothing", "-webkit-font-variant-ligatures", 84 84 "-webkit-hyphenate-character", "-webkit-hyphenate-limit-after", "-webkit-hyphenate-limit-before", 85 85 "-webkit-hyphenate-limit-lines", "-webkit-hyphens", "-webkit-line-align", "-webkit-line-box-contain", … … 851 851 "auto", "calc()", "-webkit-calc()" 852 852 ], 853 "-webkit-highlight": [854 "none"855 ],856 853 "-webkit-hyphenate-character": [ 857 854 "none" -
trunk/Source/WebKit/mac/ChangeLog
r163715 r163717 1 2014-02-08 Dan Bernstein <mitz@apple.com> 2 3 Remove client-drawn highlights (-webkit-highlight, WebHTMLHighlighter) 4 https://bugs.webkit.org/show_bug.cgi?id=128456 5 6 Reviewed by Anders Carlsson. 7 8 * WebCoreSupport/WebChromeClient.h: 9 * WebCoreSupport/WebChromeClient.mm: Removed customHighlightRect and paintCustomHighlight. 10 * WebView/WebHTMLView.mm: 11 (-[WebHTMLViewPrivate dealloc]): Removed highlighters ivar. 12 (-[WebHTMLViewPrivate clear]): Ditto. 13 * WebView/WebHTMLViewInternal.h: Removed declaration. 14 * WebView/WebHTMLViewPrivate.h: Removed WebHTMLHighlighter protocol and method declarations. 15 1 16 2014-02-08 Dan Bernstein <mitz@apple.com> 2 17 -
trunk/Source/WebKit/mac/WebCoreSupport/WebChromeClient.h
r163568 r163717 135 135 #endif 136 136 137 virtual WebCore::FloatRect customHighlightRect(WebCore::Node*, const WTF::AtomicString& type, const WebCore::FloatRect& lineRect) override;138 virtual void paintCustomHighlight(WebCore::Node*, const WTF::AtomicString& type, const WebCore::FloatRect& boxRect, const WebCore::FloatRect& lineRect, bool behindText, bool entireLine) override;139 140 137 #if ENABLE(INPUT_TYPE_COLOR) 141 138 virtual PassOwnPtr<WebCore::ColorChooser> createColorChooser(WebCore::ColorChooserClient*, const WebCore::Color&) override; -
trunk/Source/WebKit/mac/WebCoreSupport/WebChromeClient.mm
r163568 r163717 740 740 #endif 741 741 742 FloatRect WebChromeClient::customHighlightRect(Node* node, const AtomicString& type, const FloatRect& lineRect)743 {744 BEGIN_BLOCK_OBJC_EXCEPTIONS;745 746 NSView *documentView = [[kit(node->document().frame()) frameView] documentView];747 if (![documentView isKindOfClass:[WebHTMLView class]])748 return NSZeroRect;749 750 WebHTMLView *webHTMLView = (WebHTMLView *)documentView;751 id<WebHTMLHighlighter> highlighter = [webHTMLView _highlighterForType:type];752 return [highlighter highlightRectForLine:lineRect representedNode:kit(node)];753 754 END_BLOCK_OBJC_EXCEPTIONS;755 756 return NSZeroRect;757 }758 759 void WebChromeClient::paintCustomHighlight(Node* node, const AtomicString& type, const FloatRect& boxRect, const FloatRect& lineRect,760 bool behindText, bool entireLine)761 {762 BEGIN_BLOCK_OBJC_EXCEPTIONS;763 764 NSView *documentView = [[kit(node->document().frame()) frameView] documentView];765 if (![documentView isKindOfClass:[WebHTMLView class]])766 return;767 768 WebHTMLView *webHTMLView = (WebHTMLView *)documentView;769 id<WebHTMLHighlighter> highlighter = [webHTMLView _highlighterForType:type];770 [highlighter paintHighlightForBox:boxRect onLine:lineRect behindText:behindText entireLine:entireLine representedNode:kit(node)];771 772 END_BLOCK_OBJC_EXCEPTIONS;773 }774 775 742 #if ENABLE(INPUT_TYPE_COLOR) 776 743 PassOwnPtr<ColorChooser> WebChromeClient::createColorChooser(ColorChooserClient* client, const Color& initialColor) -
trunk/Source/WebKit/mac/WebView/WebHTMLView.mm
r163232 r163717 595 595 NSArray *pageRects; 596 596 597 NSMutableDictionary *highlighters;598 599 600 597 #if !PLATFORM(IOS) 601 598 WebTextCompletionController *completionController; … … 693 690 #endif 694 691 [dataSource release]; 695 [highlighters release];696 692 #if !PLATFORM(IOS) 697 693 [trackingAreaForNonKeyWindow release]; … … 732 728 #endif 733 729 [dataSource release]; 734 [highlighters release];735 730 #if !PLATFORM(IOS) 736 731 [trackingAreaForNonKeyWindow release]; … … 747 742 #endif 748 743 dataSource = nil; 749 highlighters = nil;750 744 #if !PLATFORM(IOS) 751 745 trackingAreaForNonKeyWindow = nil; … … 2087 2081 if (coreFrame) 2088 2082 coreFrame->editor().decreaseSelectionListLevel(); 2089 }2090 2091 - (void)_setHighlighter:(id<WebHTMLHighlighter>)highlighter ofType:(NSString*)type2092 {2093 if (!_private->highlighters)2094 _private->highlighters = [[NSMutableDictionary alloc] init];2095 [_private->highlighters setObject:highlighter forKey:type];2096 }2097 2098 - (void)_removeHighlighterOfType:(NSString*)type2099 {2100 [_private->highlighters removeObjectForKey:type];2101 2083 } 2102 2084 … … 5538 5520 #endif 5539 5521 5540 - (id<WebHTMLHighlighter>)_highlighterForType:(NSString*)type5541 {5542 return [_private->highlighters objectForKey:type];5543 }5544 5545 5522 - (WebFrame *)_frame 5546 5523 { -
trunk/Source/WebKit/mac/WebView/WebHTMLViewInternal.h
r163079 r163717 46 46 - (BOOL)_canSmartCopyOrDelete; 47 47 48 - (id <WebHTMLHighlighter>)_highlighterForType:(NSString*)type;49 48 - (WebFrame *)_frame; 50 49 #if !PLATFORM(IOS) -
trunk/Source/WebKit/mac/WebView/WebHTMLViewPrivate.h
r160622 r163717 39 39 @class DOMRange; 40 40 @class WebPluginController; 41 42 @protocol WebHTMLHighlighter43 - (NSRect)highlightRectForLine:(NSRect)lineRect representedNode:(DOMNode *)node;44 - (void)paintHighlightForBox:(NSRect)boxRect onLine:(NSRect)lineRect behindText:(BOOL)text entireLine:(BOOL)line representedNode:(DOMNode *)node;45 @end46 41 47 42 extern const float _WebHTMLViewPrintingMinimumShrinkFactor; … … 119 114 - (DOMNode *)_increaseSelectionListLevelUnordered; 120 115 - (void)_decreaseSelectionListLevel; 121 - (void)_setHighlighter:(id <WebHTMLHighlighter>)highlighter ofType:(NSString *)type;122 - (void)_removeHighlighterOfType:(NSString *)type;123 116 - (DOMDocumentFragment *)_documentFragmentFromPasteboard:(NSPasteboard *)pasteboard forType:(NSString *)pboardType inContext:(DOMRange *)context subresources:(NSArray **)subresources; 124 117 #endif -
trunk/Source/WebKit2/ChangeLog
r163712 r163717 1 2014-02-08 Dan Bernstein <mitz@apple.com> 2 3 Remove client-drawn highlights (-webkit-highlight, WebHTMLHighlighter) 4 https://bugs.webkit.org/show_bug.cgi?id=128456 5 6 Reviewed by Anders Carlsson. 7 8 * WebProcess/WebCoreSupport/WebChromeClient.cpp: Removed customHighlightRect and 9 paintCustomHighlight. 10 * WebProcess/WebCoreSupport/WebChromeClient.h: 11 1 12 2014-02-08 Darin Adler <darin@apple.com> 2 13 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp
r163676 r163717 664 664 } 665 665 666 FloatRect WebChromeClient::customHighlightRect(Node*, const AtomicString& /*type*/, const FloatRect& /*lineRect*/)667 {668 notImplemented();669 return FloatRect();670 }671 672 void WebChromeClient::paintCustomHighlight(Node*, const AtomicString& /*type*/, const FloatRect& /*boxRect*/, const FloatRect& /*lineRect*/,673 bool /*behindText*/, bool /*entireLine*/)674 {675 notImplemented();676 }677 678 666 bool WebChromeClient::shouldReplaceWithGeneratedFileForUpload(const String& path, String& generatedFilename) 679 667 { -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.h
r163600 r163717 145 145 virtual void populateVisitedLinks() override; 146 146 147 virtual WebCore::FloatRect customHighlightRect(WebCore::Node*, const WTF::AtomicString& type, const WebCore::FloatRect& lineRect) override;148 virtual void paintCustomHighlight(WebCore::Node*, const AtomicString& type, const WebCore::FloatRect& boxRect, const WebCore::FloatRect& lineRect,149 bool behindText, bool entireLine) override;150 151 147 virtual bool shouldReplaceWithGeneratedFileForUpload(const String& path, String& generatedFilename) override; 152 148 virtual String generateReplacementFile(const String& path) override;
Note:
See TracChangeset
for help on using the changeset viewer.