Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
<html> element should not have 'manifest' IDL attribute
https://bugs.webkit.org/show_bug.cgi?id=58129 Reviewed by Chris Dumez. Removed manifest IDL attribute from the html element. Blink removed this attribute in 2014: chromium/chromium@46d5f25 * LayoutTests/fast/dom/HTMLHtmlElement/html-element-manifest-expected.txt: Added. * LayoutTests/fast/dom/HTMLHtmlElement/html-element-manifest.html: Added. * LayoutTests/fast/dom/URL-attribute-reflection-expected.txt: * LayoutTests/fast/dom/URL-attribute-reflection.html: * Source/WebCore/html/HTMLHtmlElement.idl: Canonical link: https://commits.webkit.org/253053@main
- Loading branch information
Showing
5 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
LayoutTests/fast/dom/HTMLHtmlElement/html-element-manifest-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
This tests that manifest IDL attribute does not exist on html element | ||
|
||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". | ||
|
||
|
||
PASS "manifest" in document.documentElement is false | ||
PASS successfullyParsed is true | ||
|
||
TEST COMPLETE | ||
|
10 changes: 10 additions & 0 deletions
10
LayoutTests/fast/dom/HTMLHtmlElement/html-element-manifest.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<body> | ||
<script src="../../../resources/js-test.js"></script> | ||
<script> | ||
description('This tests that manifest IDL attribute does not exist on html element'); | ||
shouldBeFalse('"manifest" in document.documentElement'); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters