Move computedStyleIncludingVisitedInfo from TestRunner to Internals
Created attachment 188228 [details] Patch
Comment on attachment 188228 [details] Patch Attachment 188228 [details] did not pass qt-ews (qt): Output: http://queues.webkit.org/results/16536373
Comment on attachment 188228 [details] Patch Attachment 188228 [details] did not pass qt-wk2-ews (qt): Output: http://queues.webkit.org/results/16570097
Created attachment 188239 [details] Patch
Comment on attachment 188239 [details] Patch Attachment 188239 [details] did not pass chromium-ews (chromium-xvfb): Output: http://queues.webkit.org/results/16543463 New failing tests: fast/loader/stateobjects/state-url-sets-links-visited.html
Created attachment 188254 [details] Patch
Comment on attachment 188254 [details] Patch Attachment 188254 [details] did not pass chromium-ews (chromium-xvfb): Output: http://queues.webkit.org/results/16570177 New failing tests: fast/loader/stateobjects/state-url-sets-links-visited.html
Comment on attachment 188254 [details] Patch Need to investigate the chromium mystery.
*** Bug 37297 has been marked as a duplicate of this bug. ***
Created attachment 190637 [details] Patch
Comment on attachment 190637 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=190637&action=review r=me. This is great. > Source/WebCore/testing/Internals.idl:37 > + CSSStyleDeclaration computedStyleIncludingVisitedInfo(in Node node) raises(DOMException); The TestRunner version took an Element argument, not a Node. I don't think that's really a problem though, computed styles can be created from nodes, so it makes sense to support this in Internals.
> The TestRunner version took an Element argument, not a Node. > I don't think that's really a problem though, computed styles can be created from nodes, so it makes sense to support this in Internals. Yup, as you say, it is intentional :) Thank you for the review. I should CC you more often instead of waiting 2 weeks for someone randomly r+ing.
Created attachment 191096 [details] Patch
Committed r144547: <http://trac.webkit.org/changeset/144547>