[Webkit-unassigned] [Bug 94949] [Qt][WK2] REGRESSION(r126067): It made qmltests::DoubleTapToZoom::test_basic() fail
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Aug 24 10:52:47 PDT 2012
https://bugs.webkit.org/show_bug.cgi?id=94949
--- Comment #2 from Christophe Dumez <christophe.dumez at intel.com> 2012-08-24 10:52:45 PST ---
It appears this QML attempts to serialize a ClientRect object (unhandled host object), which is not supported according to spec (http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#safe-passing-of-structured-data).
As a consequence, a DataCloneError is being thrown.
tst_doubleTapToZoom.qml code:
function elementRect(id) {
resultSpy.clear();
var result;
webView.experimental.evaluateJavaScript(
"document.getElementById('" + id + "').getBoundingClientRect();",
function(rect) { webView.resultReceived(); result = rect });
resultSpy.wait();
return result;
}
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list