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

Unified Diff: LayoutTests/fast/css/adjacent-sibling-selector.html

Issue 8390051: Merge 98492 - REGRESSION (r94887): Scrolling the HTML spec is more jerky now than it was (regress... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/912/
Patch Set: Created 9 years, 2 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
« no previous file with comments | « LayoutTests/ChangeLog ('k') | LayoutTests/fast/css/adjacent-sibling-selector-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/adjacent-sibling-selector.html
===================================================================
--- LayoutTests/fast/css/adjacent-sibling-selector.html (revision 98492)
+++ LayoutTests/fast/css/adjacent-sibling-selector.html (working copy)
@@ -1,46 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <style type="text/css">
- div[test=before] + div + span {
- color: red;
- display: block;
- }
- div[test=before] + div + span + span {
- display: none;
- }
- div[test=after] + div + span {
- display: none;
- }
- div[test=after] + div + span + span {
- color: green;
- display: block;
- }
- </style>
-</head>
-<body onload="startTest();">
- <div id="div1" test="before">Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=66887">https://bugs.webkit.org/show_bug.cgi?id=66887</a></div>
- <div id="div2">Test Result:</div>
- <span>FAILED</span>
- <span>PASSED</span>
- <script>
- function change() {
- var element = document.getElementById('div1');
- element.attributes.test.value = "after";
- if (window.layoutTestController) {
- layoutTestController.notifyDone();
- }
- }
- function startTest() {
- if (window.layoutTestController) {
- layoutTestController.dumpAsText();
- layoutTestController.waitUntilDone();
- }
- // Trigger an attribute change after all load processing is done. Doing the change
- // here immediately does not exhibit the problem.
- setTimeout("change();", 0);
- }
- </script>
-</body>
-</html>
-
« no previous file with comments | « LayoutTests/ChangeLog ('k') | LayoutTests/fast/css/adjacent-sibling-selector-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698