Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Unified Diff: LayoutTests/fast/dom/frame-loading-via-document-write.html

Issue 1145773003: Remove the Document.charset setter (making it readonly) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix webexposed tests Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/frame-loading-via-document-write.html
diff --git a/LayoutTests/fast/dom/frame-loading-via-document-write.html b/LayoutTests/fast/dom/frame-loading-via-document-write.html
index bb1067207ccb75389944f67f6ade91a9e39e943c..cfa8008fd7081c8ec3fd7825a6dd4637a4433d0e 100644
--- a/LayoutTests/fast/dom/frame-loading-via-document-write.html
+++ b/LayoutTests/fast/dom/frame-loading-via-document-write.html
@@ -28,7 +28,6 @@ function buildFrameset()
"</td></tr></table></body></html>";
frames['topRow'].document.open("text/html","replace");
- frames['topRow'].document.charset=document.charset;
frames['topRow'].document.write(outHTML);
frames['topRow'].document.close();
@@ -45,7 +44,6 @@ function buildFrameset()
"</td></tr></table></body></html>";
frames['middleRow'].document.open("text/html","replace");
- frames['middleRow'].document.charset=document.charset;
frames['middleRow'].document.write(outHTML);
frames['middleRow'].document.close();
@@ -56,7 +54,6 @@ function buildFrameset()
"</td></tr></table></body></html>";
frames['bottomRow'].document.open("text/html","replace");
- frames['bottomRow'].document.charset=document.charset;
frames['bottomRow'].document.write(outHTML);
frames['bottomRow'].document.close();
}

Powered by Google App Engine
This is Rietveld 408576698