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

Unified Diff: webkit/port/bindings/v8/v8_custom.cpp

Issue 18651: Fix the regression in Yahoo! Mail... (Closed) Base URL: svn://chrome-svn/chrome/branches/release_154.next/src/
Patch Set: Created 11 years, 11 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: webkit/port/bindings/v8/v8_custom.cpp
===================================================================
--- webkit/port/bindings/v8/v8_custom.cpp (revision 8360)
+++ webkit/port/bindings/v8/v8_custom.cpp (working copy)
@@ -2451,8 +2451,6 @@
CALLBACK_FUNC_DECL(HTMLDocumentWrite) {
INC_STATS(L"DOM.HTMLDocument.write()");
HTMLDocument* imp = V8Proxy::DOMWrapperToNode<HTMLDocument>(args.Holder());
- Frame* frame = V8Proxy::retrieveActiveFrame();
- ASSERT(frame);
imp->write(WriteHelper_GetString(args));
return v8::Undefined();
}
@@ -2461,8 +2459,6 @@
CALLBACK_FUNC_DECL(HTMLDocumentWriteln) {
INC_STATS(L"DOM.HTMLDocument.writeln()");
HTMLDocument* imp = V8Proxy::DOMWrapperToNode<HTMLDocument>(args.Holder());
- Frame* frame = V8Proxy::retrieveActiveFrame();
- ASSERT(frame);
imp->writeln(WriteHelper_GetString(args));
return v8::Undefined();
}
« no previous file with comments | « webkit/data/layout_tests/chrome/fast/dom/wrapper-context-expected.txt ('k') | webkit/port/bindings/v8/v8_proxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698