| 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();
|
| }
|
|
|