Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Unified Diff: third_party/WebKit/LayoutTests/csspaint/valid-image-before-load.html

Issue 2868003002: CSSPaint: Move layout tests in csspaint/ to http/tests/csspaint/ (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/csspaint/valid-image-before-load.html
diff --git a/third_party/WebKit/LayoutTests/csspaint/valid-image-before-load.html b/third_party/WebKit/LayoutTests/csspaint/valid-image-before-load.html
deleted file mode 100644
index 3e6f37b20ecee06ca023ab5602feff32447c3809..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/csspaint/valid-image-before-load.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../resources/run-after-layout-and-paint.js"></script>
-<style>
- #output {
- width: 100px;
- height: 100px;
- background-color: red;
- }
-</style>
-</head>
-<body>
-<div id="output"></div>
-
-<script id="code" type="text/worklet">
-registerPaint('green', class {
- paint(ctx, geom) {
- ctx.fillStyle = 'green';
- ctx.fillRect(0, 0, geom.width, geom.height);
- }
-});
-</script>
-
-<script>
-if (window.testRunner) {
- testRunner.waitUntilDone();
-}
-
-var el = document.getElementById('output');
-el.style.backgroundImage = 'paint(green)';
-
-var blob = new Blob([document.getElementById('code').textContent],
- {type: 'text/javascript'});
-paintWorklet.addModule(URL.createObjectURL(blob)).then(function() {
- runAfterLayoutAndPaint(function() {
- if (window.testRunner) {
- testRunner.notifyDone();
- }
- });
-});
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698