mirror of
https://github.com/servo/servo.git
synced 2025-08-02 04:00:32 +01:00
Auto merge of #6091 - Ms2ger:2dcontext, r=jdm
<!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6091) <!-- Reviewable:end -->
This commit is contained in:
commit
5b47db447d
6 changed files with 4758 additions and 31 deletions
|
@ -9,9 +9,6 @@
|
||||||
# Should be == with expected failure:
|
# Should be == with expected failure:
|
||||||
fragment=top != ../html/acid2.html acid2_ref.html
|
fragment=top != ../html/acid2.html acid2_ref.html
|
||||||
|
|
||||||
== 2dcontext/lineto_a.html 2dcontext/lineto_ref.html
|
|
||||||
== 2dcontext/transform_a.html 2dcontext/transform_ref.html
|
|
||||||
|
|
||||||
== absolute_inline_containing_block_a.html absolute_inline_containing_block_ref.html
|
== absolute_inline_containing_block_a.html absolute_inline_containing_block_ref.html
|
||||||
== acid1_a.html acid1_b.html
|
== acid1_a.html acid1_b.html
|
||||||
== acid2_noscroll.html acid2_ref_broken.html
|
== acid2_noscroll.html acid2_ref_broken.html
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<meta charset=utf-8>
|
||||||
<body>
|
<link rel=match href=lineto_ref.html>
|
||||||
<style>
|
<style>
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -24,6 +24,3 @@ ctx.closePath();
|
||||||
ctx.fillStyle = '#90EE90';
|
ctx.fillStyle = '#90EE90';
|
||||||
ctx.fill();
|
ctx.fill();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,5 +1,5 @@
|
||||||
<html>
|
<!DOCTYPE html>
|
||||||
<head>
|
<meta charset=utf-8>
|
||||||
<style>
|
<style>
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -12,8 +12,4 @@
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div></div>
|
<div></div>
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,12 +1,11 @@
|
||||||
<html>
|
<!doctype html>
|
||||||
<head>
|
<meta charset=utf-8>
|
||||||
|
<link rel=match href=transform_ref.html>
|
||||||
<style>
|
<style>
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<canvas id=c width=400 height=300></canvas>
|
<canvas id=c width=400 height=300></canvas>
|
||||||
<script>
|
<script>
|
||||||
var canvas = document.getElementById('c');
|
var canvas = document.getElementById('c');
|
||||||
|
@ -21,6 +20,3 @@ ctx.bezierCurveTo(20, 20, 10, 20, 10, 20);
|
||||||
ctx.closePath();
|
ctx.closePath();
|
||||||
ctx.fill();
|
ctx.fill();
|
||||||
</script>
|
</script>
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<html>
|
<!doctype html>
|
||||||
<head>
|
<meta charset=utf-8>
|
||||||
<style>
|
<style>
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -13,9 +13,4 @@ section {
|
||||||
left: 30px;
|
left: 30px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<section></section>
|
<section></section>
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue