mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
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
11 lines
365 B
Plaintext
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();
|
|
};
|