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

Unified Diff: third_party/WebKit/LayoutTests/shadow-dom/crashes/offsetParent-layoutObject-lifecycle.html

Issue 2194793006: Do not commit: Revert of r404081 and r402757 for perf testing purposes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/shadow-dom/crashes/offsetParent-layoutObject-lifecycle.html
diff --git a/third_party/WebKit/LayoutTests/shadow-dom/crashes/offsetParent-layoutObject-lifecycle.html b/third_party/WebKit/LayoutTests/shadow-dom/crashes/offsetParent-layoutObject-lifecycle.html
deleted file mode 100644
index 8a1d08d554174522e6479ae4f3daa99047e9d8bf..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/shadow-dom/crashes/offsetParent-layoutObject-lifecycle.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<script src='../../resources/testharness.js'></script>
-<script src='../../resources/testharnessreport.js'></script>
-<script>
-// This case is created from reproduction case by cloudfuzzer.
-window.addEventListener('load', () => {
- test(() => {
- var link = document.createElement('link');
- link.setAttribute('rel','import');
- document.head.appendChild(link);
-
- var style = document.createElement('style');
- style.textContent = '@import url(x)';
- document.head.appendChild(style);
-
- var frame = document.createElement('frame');
- document.body.appendChild(frame);
-
- // This could cause crash.
- frame.offsetHeight;
- assert_true(true, 'This test must run without crash.');
- }, "HTMLElement.offsetHeight should not cause crash.");
-}, false);
-</script>
-<body></body>

Powered by Google App Engine
This is Rietveld 408576698