| Index: LayoutTests/fast/dom/Window/window-properties-performance.html
|
| diff --git a/LayoutTests/fast/dom/Window/window-properties-performance.html b/LayoutTests/fast/dom/Window/window-properties-performance.html
|
| index 0a8f81ef12588825d5d16d5a9d2ddbe76b86930d..68d12e067bc4ebef5abf0b4d908997512c06b3fa 100644
|
| --- a/LayoutTests/fast/dom/Window/window-properties-performance.html
|
| +++ b/LayoutTests/fast/dom/Window/window-properties-performance.html
|
| @@ -91,6 +91,9 @@ function logProperties(object, objectName)
|
| logValue('window.performance');
|
| window.performance.timing = 'timing is not replaceable';
|
| logValue('window.performance.timing');
|
| +// PerformanceTiming supports a serializer.
|
| +var jsonizedTiming = JSON.parse(JSON.stringify(window.performance.timing));
|
| +logValue('jsonizedTiming');
|
| window.performance.navigation = 'navigation is not replaceable';
|
| logValue('window.performance.navigation');
|
| window.performance = 'performance is replaceable';
|
|
|