Index: LayoutTests/fast/viewport/viewport-legacy-xhtmlmp-remove-and-add.html |
diff --git a/LayoutTests/fast/viewport/viewport-legacy-xhtmlmp-remove-and-add.html b/LayoutTests/fast/viewport/viewport-legacy-xhtmlmp-remove-and-add.html |
index 8294307ff186a87e7c3b95ffb69bec4d9923ef72..41d54217be8825b87358ea822e92caa21f444f8b 100644 |
--- a/LayoutTests/fast/viewport/viewport-legacy-xhtmlmp-remove-and-add.html |
+++ b/LayoutTests/fast/viewport/viewport-legacy-xhtmlmp-remove-and-add.html |
@@ -19,18 +19,18 @@ |
testRunner.dumpAsText(); |
if (window.internals) |
- alert(internals.configurationForViewport(document, 1, 320, 480, 320, 352)); |
+ alert(internals.viewportAsText(document, 1, 320, 352)); |
var originalDoctype = document.doctype; |
document.removeChild(originalDoctype); |
if (window.internals) |
- alert(internals.configurationForViewport(document, 1, 320, 480, 320, 352)); |
+ alert(internals.viewportAsText(document, 1, 320, 352)); |
document.insertBefore(originalDoctype, document.firstChild); |
if (window.internals) |
- alert(internals.configurationForViewport(document, 1, 320, 480, 320, 352)); |
+ alert(internals.viewportAsText(document, 1, 320, 352)); |
} |
</script> |
</head> |