-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1527661 [wpt PR 15356] - HTML: <form rel>, a=testonly
Automatic update from web-platform-tests HTML: <form rel> (#15356) For whatwg/html#4332. -- wpt-commits: b44dacf7a939fd93f3afb0c46f8f89d71ea20409 wpt-pr: 15356 UltraBlame original commit: 16b6e709d409e86ea85e951e25ac4752fd4c9aba
- Loading branch information
Showing
7 changed files
with
1,126 additions
and
0 deletions.
There are no files selected for viewing
153 changes: 153 additions & 0 deletions
153
testing/web-platform/tests/html/semantics/forms/form-submission-target/rel-base-target.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,153 @@ | ||
< | ||
! | ||
DOCTYPE | ||
html | ||
> | ||
< | ||
title | ||
> | ||
& | ||
lt | ||
; | ||
form | ||
rel | ||
> | ||
with | ||
& | ||
lt | ||
; | ||
base | ||
target | ||
> | ||
< | ||
/ | ||
title | ||
> | ||
< | ||
script | ||
src | ||
= | ||
" | ||
/ | ||
resources | ||
/ | ||
testharness | ||
. | ||
js | ||
" | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
script | ||
src | ||
= | ||
" | ||
/ | ||
resources | ||
/ | ||
testharnessreport | ||
. | ||
js | ||
" | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
script | ||
src | ||
= | ||
resources | ||
/ | ||
reltester | ||
. | ||
js | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
base | ||
target | ||
= | ||
_blank | ||
> | ||
< | ||
div | ||
id | ||
= | ||
log | ||
> | ||
< | ||
/ | ||
div | ||
> | ||
< | ||
form | ||
action | ||
= | ||
resources | ||
/ | ||
endpoint | ||
. | ||
html | ||
> | ||
< | ||
input | ||
type | ||
= | ||
hidden | ||
name | ||
= | ||
channelname | ||
> | ||
< | ||
/ | ||
form | ||
> | ||
< | ||
script | ||
> | ||
const | ||
submitter | ||
= | ||
document | ||
. | ||
querySelector | ||
( | ||
" | ||
form | ||
" | ||
) | ||
channelInput | ||
= | ||
document | ||
. | ||
querySelector | ||
( | ||
" | ||
input | ||
" | ||
) | ||
; | ||
relTester | ||
( | ||
submitter | ||
channelInput | ||
" | ||
< | ||
base | ||
target | ||
> | ||
" | ||
) | ||
; | ||
< | ||
/ | ||
script | ||
> |
156 changes: 156 additions & 0 deletions
156
...ing/web-platform/tests/html/semantics/forms/form-submission-target/rel-button-target.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,156 @@ | ||
< | ||
! | ||
DOCTYPE | ||
html | ||
> | ||
< | ||
title | ||
> | ||
& | ||
lt | ||
; | ||
form | ||
rel | ||
> | ||
with | ||
& | ||
lt | ||
; | ||
button | ||
formtarget | ||
> | ||
< | ||
/ | ||
title | ||
> | ||
< | ||
script | ||
src | ||
= | ||
" | ||
/ | ||
resources | ||
/ | ||
testharness | ||
. | ||
js | ||
" | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
script | ||
src | ||
= | ||
" | ||
/ | ||
resources | ||
/ | ||
testharnessreport | ||
. | ||
js | ||
" | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
script | ||
src | ||
= | ||
resources | ||
/ | ||
reltester | ||
. | ||
js | ||
> | ||
< | ||
/ | ||
script | ||
> | ||
< | ||
div | ||
id | ||
= | ||
log | ||
> | ||
< | ||
/ | ||
div | ||
> | ||
< | ||
form | ||
action | ||
= | ||
resources | ||
/ | ||
endpoint | ||
. | ||
html | ||
> | ||
< | ||
input | ||
type | ||
= | ||
hidden | ||
name | ||
= | ||
channelname | ||
> | ||
< | ||
button | ||
type | ||
= | ||
submit | ||
formtarget | ||
= | ||
_blank | ||
> | ||
< | ||
/ | ||
form | ||
> | ||
< | ||
script | ||
> | ||
const | ||
submitter | ||
= | ||
document | ||
. | ||
querySelector | ||
( | ||
" | ||
button | ||
" | ||
) | ||
channelInput | ||
= | ||
document | ||
. | ||
querySelector | ||
( | ||
" | ||
input | ||
" | ||
) | ||
; | ||
relTester | ||
( | ||
submitter | ||
channelInput | ||
" | ||
< | ||
button | ||
formtarget | ||
> | ||
" | ||
) | ||
; | ||
< | ||
/ | ||
script | ||
> |
Oops, something went wrong.