mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
mshtml: Implement HTMLPerformanceTiming's toString.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
333a127baf
commit
a7af67e05a
2 changed files with 5 additions and 2 deletions
|
@ -1801,8 +1801,10 @@ static HRESULT WINAPI HTMLPerformanceTiming_get_msFirstPaint(IHTMLPerformanceTim
|
|||
static HRESULT WINAPI HTMLPerformanceTiming_toString(IHTMLPerformanceTiming *iface, BSTR *string)
|
||||
{
|
||||
HTMLPerformanceTiming *This = impl_from_IHTMLPerformanceTiming(iface);
|
||||
FIXME("(%p)->(%p)\n", This, string);
|
||||
return E_NOTIMPL;
|
||||
|
||||
TRACE("(%p)->(%p)\n", This, string);
|
||||
|
||||
return dispex_to_string(&This->dispex, string);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLPerformanceTiming_toJSON(IHTMLPerformanceTiming *iface, VARIANT *p)
|
||||
|
|
|
@ -218,6 +218,7 @@ sync_test("builtin_toString", function() {
|
|||
test("navigator", window.navigator, "Navigator");
|
||||
test("performance", window.performance, "Performance");
|
||||
test("performanceNavigation", window.performance.navigation, "PerformanceNavigation");
|
||||
test("performanceTiming", window.performance.timing, "PerformanceTiming");
|
||||
test("screen", window.screen, "Screen");
|
||||
test("sessionStorage", window.sessionStorage, "Storage");
|
||||
test("style", document.body.style, "MSStyleCSSProperties");
|
||||
|
|
Loading…
Reference in a new issue