flutter_flutter/engine/core/html/HTMLIFrameElement.idl
Scott Violet e98fd07ffb Fixes crash in HTMLIFrameElement and exposes HTMLIFrameElement::src
HTMLIFrameElement was adding the observer in navigateView. If the same
HTMLIFrameElement navigated multiple times HTMLIFrameElement would
attach itself as an observer more than once. ObserverList doesn't like
this.

Also adds src as an attribute of HTMLIFrameElement so that I can do:
iframe.src = xxx
in script

R=abarth@chromium.org

Review URL: https://codereview.chromium.org/885783002
2015-01-28 19:47:26 -08:00

11 lines
365 B
Plaintext

// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
interface HTMLIFrameElement : HTMLElement {
[Reflect, URL] attribute DOMString src;
[CallWith=ScriptState] any takeServicesHandle();
[CallWith=ScriptState] any takeExposedServicesHandle();
};