LibWeb: Rename "FrameHostElement" to "BrowsingContextContainer"

With the renaming of "Frame" to "BrowsingContext", this changes
"FrameHostElement" to "BrowsingContextContainer" to further
match the spec.

https://html.spec.whatwg.org/#browsing-context-container
This commit is contained in:
Luke
2021-05-31 13:59:28 +01:00
committed by Andreas Kling
parent 8298e406a4
commit 59cfc4a8db
Notes: sideshowbarker 2024-07-18 17:07:23 +09:00
5 changed files with 16 additions and 16 deletions

View File

@@ -6,11 +6,11 @@
#pragma once
#include <LibWeb/HTML/FrameHostElement.h>
#include <LibWeb/HTML/BrowsingContextContainer.h>
namespace Web::HTML {
class HTMLIFrameElement final : public FrameHostElement {
class HTMLIFrameElement final : public BrowsingContextContainer {
public:
using WrapperType = Bindings::HTMLIFrameElementWrapper;