<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[195149] trunk/Source</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/195149">195149</a></dd>
<dt>Author</dt> <dd>timothy_horton@apple.com</dd>
<dt>Date</dt> <dd>2016-01-15 14:29:19 -0800 (Fri, 15 Jan 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Data detector yellow highlight location is vertically mirrored in WebKit1
https://bugs.webkit.org/show_bug.cgi?id=152216
&lt;rdar://problem/23848003&gt;

Reviewed by Beth Dakin.

No new tests, because we currently have no decent mechanism for testing
where TextIndicator/Lookup/DataDetectors actually make it to the screen,
nor for synthetic force-click in WebKit1.

* editing/mac/DictionaryLookup.h:
* editing/mac/DictionaryLookup.mm:
(WebCore::showPopupOrCreateAnimationController):
(WebCore::DictionaryLookup::showPopup):
(WebCore::DictionaryLookup::animationControllerForPopup):
Add an optional function for converting between root-FrameView and
handed-in-NSView coordinates, and use it to convert textBoundingRectInRootViewCoordinates
into the coordinates of the WebView.

* WebView/WebImmediateActionController.mm:
(-[WebImmediateActionController _animationControllerForDataDetectedText]):
(-[WebImmediateActionController _animationControllerForDataDetectedLink]):
These assignments have no effect because they're operating on a copy, because
TextIndicator::data() does not return a reference... so remove them.

* WebView/WebView.mm:
(-[WebView _setTextIndicator:withLifetime:]):
Convert textBoundingRectInRootViewCoordinates to WebView coordinates before
converting to Window coordinates from WebView coordinates so we get flipping right.

(-[WebView _animationControllerForDictionaryLookupPopupInfo:]):
(-[WebView _showDictionaryLookupPopup:]):
Ditto for these, except in the aforementioned conversion callback.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreeditingmacDictionaryLookuph">trunk/Source/WebCore/editing/mac/DictionaryLookup.h</a></li>
<li><a href="#trunkSourceWebCoreeditingmacDictionaryLookupmm">trunk/Source/WebCore/editing/mac/DictionaryLookup.mm</a></li>
<li><a href="#trunkSourceWebKitmacChangeLog">trunk/Source/WebKit/mac/ChangeLog</a></li>
<li><a href="#trunkSourceWebKitmacWebViewWebImmediateActionControllermm">trunk/Source/WebKit/mac/WebView/WebImmediateActionController.mm</a></li>
<li><a href="#trunkSourceWebKitmacWebViewWebViewmm">trunk/Source/WebKit/mac/WebView/WebView.mm</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (195148 => 195149)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-01-15 22:28:03 UTC (rev 195148)
+++ trunk/Source/WebCore/ChangeLog        2016-01-15 22:29:19 UTC (rev 195149)
</span><span class="lines">@@ -1,3 +1,24 @@
</span><ins>+2016-01-15  Tim Horton  &lt;timothy_horton@apple.com&gt;
+
+        Data detector yellow highlight location is vertically mirrored in WebKit1
+        https://bugs.webkit.org/show_bug.cgi?id=152216
+        &lt;rdar://problem/23848003&gt;
+
+        Reviewed by Beth Dakin.
+
+        No new tests, because we currently have no decent mechanism for testing
+        where TextIndicator/Lookup/DataDetectors actually make it to the screen,
+        nor for synthetic force-click in WebKit1.
+
+        * editing/mac/DictionaryLookup.h:
+        * editing/mac/DictionaryLookup.mm:
+        (WebCore::showPopupOrCreateAnimationController):
+        (WebCore::DictionaryLookup::showPopup):
+        (WebCore::DictionaryLookup::animationControllerForPopup):
+        Add an optional function for converting between root-FrameView and
+        handed-in-NSView coordinates, and use it to convert textBoundingRectInRootViewCoordinates
+        into the coordinates of the WebView.
+
</ins><span class="cx"> 2016-01-15  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Media Query (-webkit-video-playable-inline) is failing as an invalid media query expression
</span></span></pre></div>
<a id="trunkSourceWebCoreeditingmacDictionaryLookuph"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/editing/mac/DictionaryLookup.h (195148 => 195149)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/editing/mac/DictionaryLookup.h        2016-01-15 22:28:03 UTC (rev 195148)
+++ trunk/Source/WebCore/editing/mac/DictionaryLookup.h        2016-01-15 22:29:19 UTC (rev 195149)
</span><span class="lines">@@ -58,10 +58,10 @@
</span><span class="cx"> 
</span><span class="cx">     // FIXME: Should move/unify dictionaryPopupInfoForRange here too.
</span><span class="cx"> 
</span><del>-    WEBCORE_EXPORT static void showPopup(const DictionaryPopupInfo&amp;, NSView *, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback);
</del><ins>+    WEBCORE_EXPORT static void showPopup(const DictionaryPopupInfo&amp;, NSView *, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback, std::function&lt;FloatRect(FloatRect)&gt; rootViewToViewConversionCallback = nullptr);
</ins><span class="cx">     WEBCORE_EXPORT static void hidePopup();
</span><span class="cx"> 
</span><del>-    WEBCORE_EXPORT static PlatformAnimationController animationControllerForPopup(const DictionaryPopupInfo&amp;, NSView *, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback);
</del><ins>+    WEBCORE_EXPORT static PlatformAnimationController animationControllerForPopup(const DictionaryPopupInfo&amp;, NSView *, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback, std::function&lt;FloatRect(FloatRect)&gt; rootViewToViewConversionCallback = nullptr);
</ins><span class="cx"> };
</span><span class="cx"> 
</span><span class="cx"> } // namespace WebCore
</span></span></pre></div>
<a id="trunkSourceWebCoreeditingmacDictionaryLookupmm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/editing/mac/DictionaryLookup.mm (195148 => 195149)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/editing/mac/DictionaryLookup.mm        2016-01-15 22:28:03 UTC (rev 195148)
+++ trunk/Source/WebCore/editing/mac/DictionaryLookup.mm        2016-01-15 22:29:19 UTC (rev 195149)
</span><span class="lines">@@ -205,7 +205,7 @@
</span><span class="cx">     return nil;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-static PlatformAnimationController showPopupOrCreateAnimationController(bool createAnimationController, const DictionaryPopupInfo&amp; dictionaryPopupInfo, NSView *view, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback)
</del><ins>+static PlatformAnimationController showPopupOrCreateAnimationController(bool createAnimationController, const DictionaryPopupInfo&amp; dictionaryPopupInfo, NSView *view, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback, std::function&lt;FloatRect(FloatRect)&gt; rootViewToViewConversionCallback)
</ins><span class="cx"> {
</span><span class="cx">     BEGIN_BLOCK_OBJC_EXCEPTIONS;
</span><span class="cx"> 
</span><span class="lines">@@ -222,7 +222,10 @@
</span><span class="cx"> 
</span><span class="cx">         if ([getLULookupDefinitionModuleClass() respondsToSelector:@selector(showDefinitionForTerm:relativeToRect:ofView:options:)]) {
</span><span class="cx">             FloatRect firstTextRectInViewCoordinates = textIndicator.get().textRectsInBoundingRectCoordinates()[0];
</span><del>-            firstTextRectInViewCoordinates.moveBy(textIndicator.get().textBoundingRectInRootViewCoordinates().location());
</del><ins>+            FloatRect textBoundingRectInViewCoordinates = textIndicator.get().textBoundingRectInRootViewCoordinates();
+            if (rootViewToViewConversionCallback)
+                textBoundingRectInViewCoordinates = rootViewToViewConversionCallback(textBoundingRectInViewCoordinates);
+            firstTextRectInViewCoordinates.moveBy(textBoundingRectInViewCoordinates.location());
</ins><span class="cx">             if (createAnimationController)
</span><span class="cx">                 return [getLULookupDefinitionModuleClass() lookupAnimationControllerForTerm:dictionaryPopupInfo.attributedString.get() relativeToRect:firstTextRectInViewCoordinates ofView:view options:mutableOptions.get()];
</span><span class="cx"> 
</span><span class="lines">@@ -247,9 +250,9 @@
</span><span class="cx">     return nil;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void DictionaryLookup::showPopup(const DictionaryPopupInfo&amp; dictionaryPopupInfo, NSView *view, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback)
</del><ins>+void DictionaryLookup::showPopup(const DictionaryPopupInfo&amp; dictionaryPopupInfo, NSView *view, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback, std::function&lt;FloatRect(FloatRect)&gt; rootViewToViewConversionCallback)
</ins><span class="cx"> {
</span><del>-    showPopupOrCreateAnimationController(false, dictionaryPopupInfo, view, textIndicatorInstallationCallback);
</del><ins>+    showPopupOrCreateAnimationController(false, dictionaryPopupInfo, view, textIndicatorInstallationCallback, rootViewToViewConversionCallback);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void DictionaryLookup::hidePopup()
</span><span class="lines">@@ -263,9 +266,9 @@
</span><span class="cx">     END_BLOCK_OBJC_EXCEPTIONS;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-PlatformAnimationController DictionaryLookup::animationControllerForPopup(const DictionaryPopupInfo&amp; dictionaryPopupInfo, NSView *view, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback)
</del><ins>+PlatformAnimationController DictionaryLookup::animationControllerForPopup(const DictionaryPopupInfo&amp; dictionaryPopupInfo, NSView *view, std::function&lt;void(TextIndicator&amp;)&gt; textIndicatorInstallationCallback, std::function&lt;FloatRect(FloatRect)&gt; rootViewToViewConversionCallback)
</ins><span class="cx"> {
</span><del>-    return showPopupOrCreateAnimationController(true, dictionaryPopupInfo, view, textIndicatorInstallationCallback);
</del><ins>+    return showPopupOrCreateAnimationController(true, dictionaryPopupInfo, view, textIndicatorInstallationCallback, rootViewToViewConversionCallback);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> } // namespace WebCore
</span></span></pre></div>
<a id="trunkSourceWebKitmacChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit/mac/ChangeLog (195148 => 195149)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit/mac/ChangeLog        2016-01-15 22:28:03 UTC (rev 195148)
+++ trunk/Source/WebKit/mac/ChangeLog        2016-01-15 22:29:19 UTC (rev 195149)
</span><span class="lines">@@ -1,3 +1,26 @@
</span><ins>+2016-01-15  Tim Horton  &lt;timothy_horton@apple.com&gt;
+
+        Data detector yellow highlight location is vertically mirrored in WebKit1
+        https://bugs.webkit.org/show_bug.cgi?id=152216
+        &lt;rdar://problem/23848003&gt;
+
+        Reviewed by Beth Dakin.
+
+        * WebView/WebImmediateActionController.mm:
+        (-[WebImmediateActionController _animationControllerForDataDetectedText]):
+        (-[WebImmediateActionController _animationControllerForDataDetectedLink]):
+        These assignments have no effect because they're operating on a copy, because
+        TextIndicator::data() does not return a reference... so remove them.
+
+        * WebView/WebView.mm:
+        (-[WebView _setTextIndicator:withLifetime:]):
+        Convert textBoundingRectInRootViewCoordinates to WebView coordinates before
+        converting to Window coordinates from WebView coordinates so we get flipping right.
+
+        (-[WebView _animationControllerForDictionaryLookupPopupInfo:]):
+        (-[WebView _showDictionaryLookupPopup:]):
+        Ditto for these, except in the aforementioned conversion callback.
+
</ins><span class="cx"> 2016-01-14  Brady Eidson  &lt;beidson@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Modern IDB: Support opening and deleting SQLite databases on disk.
</span></span></pre></div>
<a id="trunkSourceWebKitmacWebViewWebImmediateActionControllermm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit/mac/WebView/WebImmediateActionController.mm (195148 => 195149)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit/mac/WebView/WebImmediateActionController.mm        2016-01-15 22:28:03 UTC (rev 195148)
+++ trunk/Source/WebKit/mac/WebView/WebImmediateActionController.mm        2016-01-15 22:29:19 UTC (rev 195149)
</span><span class="lines">@@ -430,7 +430,6 @@
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     auto indicator = TextIndicator::createWithRange(*detectedDataRange, TextIndicatorOptionDefault, TextIndicatorPresentationTransition::FadeIn);
</span><del>-    indicator-&gt;data().textBoundingRectInRootViewCoordinates = [_webView _convertRectFromRootView:indicator-&gt;textBoundingRectInRootViewCoordinates()];
</del><span class="cx"> 
</span><span class="cx">     _currentActionContext = [actionContext contextForView:_webView altMode:YES interactionStartedHandler:^() {
</span><span class="cx">     } interactionChangedHandler:^() {
</span><span class="lines">@@ -463,7 +462,6 @@
</span><span class="cx">     if (!linkRange)
</span><span class="cx">         return nullptr;
</span><span class="cx">     auto indicator = TextIndicator::createWithRange(*linkRange, TextIndicatorOptionDefault, TextIndicatorPresentationTransition::FadeIn);
</span><del>-    indicator-&gt;data().textBoundingRectInRootViewCoordinates = [_webView _convertRectFromRootView:indicator-&gt;textBoundingRectInRootViewCoordinates()];
</del><span class="cx"> 
</span><span class="cx">     _currentActionContext = [actionContext contextForView:_webView altMode:YES interactionStartedHandler:^() {
</span><span class="cx">     } interactionChangedHandler:^() {
</span></span></pre></div>
<a id="trunkSourceWebKitmacWebViewWebViewmm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (195148 => 195149)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit/mac/WebView/WebView.mm        2016-01-15 22:28:03 UTC (rev 195148)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm        2016-01-15 22:29:19 UTC (rev 195149)
</span><span class="lines">@@ -8568,11 +8568,10 @@
</span><span class="cx"> 
</span><span class="cx">     [self _prepareForDictionaryLookup];
</span><span class="cx"> 
</span><del>-    DictionaryPopupInfo adjustedPopupInfo = dictionaryPopupInfo;
-    adjustedPopupInfo.textIndicator.textBoundingRectInRootViewCoordinates = [self _convertRectFromRootView:adjustedPopupInfo.textIndicator.textBoundingRectInRootViewCoordinates];
-
-    return DictionaryLookup::animationControllerForPopup(adjustedPopupInfo, self, [self](TextIndicator&amp; textIndicator) {
</del><ins>+    return DictionaryLookup::animationControllerForPopup(dictionaryPopupInfo, self, [self](TextIndicator&amp; textIndicator) {
</ins><span class="cx">         [self _setTextIndicator:textIndicator withLifetime:TextIndicatorWindowLifetime::Permanent];
</span><ins>+    }, [self](FloatRect rectInRootViewCoordinates) {
+        return [self _convertRectFromRootView:rectInRootViewCoordinates];
</ins><span class="cx">     });
</span><span class="cx"> }
</span><span class="cx"> #endif // __MAC_OS_X_VERSION_MIN_REQUIRED &gt;= 101000
</span><span class="lines">@@ -8597,7 +8596,7 @@
</span><span class="cx">     if (!_private-&gt;textIndicatorWindow)
</span><span class="cx">         _private-&gt;textIndicatorWindow = std::make_unique&lt;TextIndicatorWindow&gt;(self);
</span><span class="cx"> 
</span><del>-    NSRect textBoundingRectInWindowCoordinates = [self convertRect:textIndicator.textBoundingRectInRootViewCoordinates() toView:nil];
</del><ins>+    NSRect textBoundingRectInWindowCoordinates = [self convertRect:[self _convertRectFromRootView:textIndicator.textBoundingRectInRootViewCoordinates()] toView:nil];
</ins><span class="cx">     NSRect textBoundingRectInScreenCoordinates = [self.window convertRectToScreen:textBoundingRectInWindowCoordinates];
</span><span class="cx">     _private-&gt;textIndicatorWindow-&gt;setTextIndicator(textIndicator, NSRectToCGRect(textBoundingRectInScreenCoordinates), lifetime);
</span><span class="cx"> }
</span><span class="lines">@@ -8633,11 +8632,10 @@
</span><span class="cx"> 
</span><span class="cx">     [self _prepareForDictionaryLookup];
</span><span class="cx"> 
</span><del>-    DictionaryPopupInfo adjustedPopupInfo = dictionaryPopupInfo;
-    adjustedPopupInfo.textIndicator.textBoundingRectInRootViewCoordinates = [self _convertRectFromRootView:adjustedPopupInfo.textIndicator.textBoundingRectInRootViewCoordinates];
-
-    DictionaryLookup::showPopup(adjustedPopupInfo, self, [self](TextIndicator&amp; textIndicator) {
</del><ins>+    DictionaryLookup::showPopup(dictionaryPopupInfo, self, [self](TextIndicator&amp; textIndicator) {
</ins><span class="cx">         [self _setTextIndicator:textIndicator withLifetime:TextIndicatorWindowLifetime::Permanent];
</span><ins>+    }, [self](FloatRect rectInRootViewCoordinates) {
+        return [self _convertRectFromRootView:rectInRootViewCoordinates];
</ins><span class="cx">     });
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>