Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Mullvad Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Mullvad Browser
Commits
21969297
Commit
21969297
authored
2 years ago
by
Emilio Cobos Álvarez
Browse files
Options
Downloads
Patches
Plain Diff
Bug 1786982 - Fix video-aspect-ratio.html. r=sefeng, a=test-only DONTBUILD
The test was broken, had multiple calls to t.done(), etc.
parent
62f26961
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testing/web-platform/tests/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/video-aspect-ratio.html
+42
-47
42 additions, 47 deletions
...s-for-embedded-content-and-images/video-aspect-ratio.html
with
42 additions
and
47 deletions
testing/web-platform/tests/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/video-aspect-ratio.html
+
42
−
47
View file @
21969297
...
...
@@ -14,7 +14,6 @@
<body>
<video
width=
"250"
height=
"100"
id=
"contained"
style=
"contain: size;"
></video>
<script>
let
t
=
async_test
(
"
Video width and height attributes are not used to infer aspect-ratio
"
);
function
assert_ratio
(
img
,
expected
)
{
let
epsilon
=
0.001
;
assert_approx_equals
(
parseInt
(
getComputedStyle
(
img
).
width
,
10
)
/
parseInt
(
getComputedStyle
(
img
).
height
,
10
),
expected
,
epsilon
);
...
...
@@ -24,54 +23,50 @@ function test_computed_style(width, height, expected) {
test_computed_style_aspect_ratio
(
"
video
"
,
{
width
:
width
,
height
:
height
},
expected
);
}
t
.
step
(
function
()
{
var
video
=
document
.
getElementById
(
"
contained
"
);
video
.
src
=
getVideoURI
(
'
/media/2x2-green
'
);
assert_ratio
(
video
,
2.5
);
},
"
contain:size aspect ratio
"
);
// Create and append a new video and immediately check the ratio.
// This is not racy because the spec requires the user agent to queue a task:
// https://html.spec.whatwg.org/multipage/media.html#concept-media-load-algorithm
t
.
step
(
function
()
{
video
=
document
.
createElement
(
"
video
"
);
video
.
setAttribute
(
"
width
"
,
"
250
"
);
video
.
setAttribute
(
"
height
"
,
"
100
"
);
video
.
src
=
getVideoURI
(
'
/media/2x2-green
'
);
document
.
body
.
appendChild
(
video
);
assert_ratio
(
video
,
2.5
);
video
.
onloadeddata
=
t
.
step_func_done
(
function
()
{
// When loaded this video is square.
assert_ratio
(
video
,
1
);
});
},
"
aspect ratio for regular video
"
);
// Same but with auto width.
t
.
step
(
function
()
{
video
=
document
.
createElement
(
"
video
"
);
video
.
setAttribute
(
"
width
"
,
"
250
"
);
video
.
setAttribute
(
"
height
"
,
"
100
"
);
video
.
style
.
width
=
"
auto
"
;
video
.
src
=
getVideoURI
(
'
/media/2x2-green
'
);
document
.
body
.
appendChild
(
video
);
assert_ratio
(
video
,
2.5
);
promise_test
(
async
function
()
{
{
let
video
=
document
.
getElementById
(
"
contained
"
);
video
.
src
=
getVideoURI
(
'
/media/2x2-green
'
);
assert_ratio
(
video
,
2.5
,
"
contain:size aspect ratio
"
);
}
video
.
onloadeddata
=
t
.
step_func_done
(
function
()
{
// Create and append a new video and immediately check the ratio.
// This is not racy because the spec requires the user agent to queue a task:
// https://html.spec.whatwg.org/multipage/media.html#concept-media-load-algorithm
{
let
video
=
document
.
createElement
(
"
video
"
);
video
.
setAttribute
(
"
width
"
,
"
250
"
);
video
.
setAttribute
(
"
height
"
,
"
100
"
);
video
.
src
=
getVideoURI
(
'
/media/2x2-green
'
);
document
.
body
.
appendChild
(
video
);
assert_ratio
(
video
,
2.5
,
"
aspect ratio for regular video before load
"
);
await
new
Promise
(
r
=>
video
.
addEventListener
(
"
loadeddata
"
,
r
,
{
once
:
true
}));
// When loaded this video is square.
assert_ratio
(
video
,
1
);
});
},
"
aspect ratio for regular video with width: auto and height: auto
"
);
assert_ratio
(
video
,
1
,
"
aspect ratio for regular video after load
"
);
}
test_computed_style
(
"
10
"
,
"
20
"
,
"
auto 10 / 20
"
);
test_computed_style
(
"
0.5
"
,
"
1.5
"
,
"
auto 0.5 / 1.5
"
);
test_computed_style
(
"
0
"
,
"
1
"
,
"
auto 0 / 1
"
);
test_computed_style
(
"
1
"
,
"
0
"
,
"
auto 1 / 0
"
);
test_computed_style
(
"
0
"
,
"
0
"
,
"
auto 0 / 0
"
);
test_computed_style
(
null
,
null
,
"
auto
"
);
test_computed_style
(
"
10
"
,
null
,
"
auto
"
);
test_computed_style
(
null
,
"
20
"
,
"
auto
"
);
test_computed_style
(
"
xx
"
,
"
20
"
,
"
auto
"
);
test_computed_style
(
"
10%
"
,
"
20
"
,
"
auto
"
);
// Same but with auto width.
{
let
video
=
document
.
createElement
(
"
video
"
);
video
.
setAttribute
(
"
width
"
,
"
250
"
);
video
.
setAttribute
(
"
height
"
,
"
100
"
);
video
.
style
.
width
=
"
auto
"
;
video
.
src
=
getVideoURI
(
'
/media/2x2-green
'
);
document
.
body
.
appendChild
(
video
);
assert_ratio
(
video
,
2.5
,
"
aspect ratio for regular video with width: auto before load
"
);
await
new
Promise
(
r
=>
video
.
addEventListener
(
"
loadeddata
"
,
r
,
{
once
:
true
}));
assert_ratio
(
video
,
1
,
"
aspect ratio for regular video with width: auto after load
"
);
}
test_computed_style
(
"
10
"
,
"
20
"
,
"
auto 10 / 20
"
);
test_computed_style
(
"
0.5
"
,
"
1.5
"
,
"
auto 0.5 / 1.5
"
);
test_computed_style
(
"
0
"
,
"
1
"
,
"
auto 0 / 1
"
);
test_computed_style
(
"
1
"
,
"
0
"
,
"
auto 1 / 0
"
);
test_computed_style
(
"
0
"
,
"
0
"
,
"
auto 0 / 0
"
);
test_computed_style
(
null
,
null
,
"
auto
"
);
test_computed_style
(
"
10
"
,
null
,
"
auto
"
);
test_computed_style
(
null
,
"
20
"
,
"
auto
"
);
test_computed_style
(
"
xx
"
,
"
20
"
,
"
auto
"
);
test_computed_style
(
"
10%
"
,
"
20
"
,
"
auto
"
);
});
</script>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment