mirror of
https://github.com/servo/servo.git
synced 2025-08-01 03:30:33 +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:
|
||||
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
|
||||
== acid1_a.html acid1_b.html
|
||||
== acid2_noscroll.html acid2_ref_broken.html
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<meta charset=utf-8>
|
||||
<link rel=match href=lineto_ref.html>
|
||||
<style>
|
||||
html, body {
|
||||
margin: 0;
|
||||
|
@ -24,6 +24,3 @@ ctx.closePath();
|
|||
ctx.fillStyle = '#90EE90';
|
||||
ctx.fill();
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,5 +1,5 @@
|
|||
<html>
|
||||
<head>
|
||||
<!DOCTYPE html>
|
||||
<meta charset=utf-8>
|
||||
<style>
|
||||
html, body {
|
||||
margin: 0;
|
||||
|
@ -12,8 +12,4 @@
|
|||
margin: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div></div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,12 +1,11 @@
|
|||
<html>
|
||||
<head>
|
||||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<link rel=match href=transform_ref.html>
|
||||
<style>
|
||||
html, body {
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<canvas id=c width=400 height=300></canvas>
|
||||
<script>
|
||||
var canvas = document.getElementById('c');
|
||||
|
@ -21,6 +20,3 @@ ctx.bezierCurveTo(20, 20, 10, 20, 10, 20);
|
|||
ctx.closePath();
|
||||
ctx.fill();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<html>
|
||||
<head>
|
||||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<style>
|
||||
html, body {
|
||||
margin: 0;
|
||||
|
@ -13,9 +13,4 @@ section {
|
|||
left: 30px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<section></section>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue