Skip to content

Commit

Permalink
Bug 1527661 [wpt PR 15356] - HTML: <form rel>, a=testonly
Browse files Browse the repository at this point in the history
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
marco-c committed Oct 4, 2019
1 parent 1036ed9 commit d8fa23d
Show file tree
Hide file tree
Showing 7 changed files with 1,137 additions and 0 deletions.
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
>
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
>
Loading

0 comments on commit d8fa23d

Please sign in to comment.