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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-table-row-top.html

Issue 2711803002: Disallow 'position: sticky' on <thead> and <tr> elements. (Closed)
Patch Set: Correct layout tests Created 3 years, 10 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 | « no previous file | third_party/WebKit/LayoutTests/fast/css/sticky/sticky-table-row-top-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-table-row-top.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-table-row-top.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-table-row-top.html
deleted file mode 100644
index 5659902254c763325be98917f411e490d114f185..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-table-row-top.html
+++ /dev/null
@@ -1,110 +0,0 @@
-<!DOCTYPE html>
-<script>
-if (window.internals) {
- internals.settings.setCSSStickyPositionEnabled(true);
-}
-</script>
-
-<html>
-<head>
-<style>
- body {
- margin: 0;
- height: 2000px;
- overflow: hidden; /* hide scrollbars */
- }
-
- .group {
- display: inline-block;
- position: relative;
- width: 250px;
- height: 500px;
- }
-
- .container {
- width: 200px;
- height: 400px;
- outline: 2px solid black;
- border: hidden;
- border-width: 0px;
- border-spacing: 0px !important;
- border-collapse:collapse;
- cellspacing: 0;
- cellpadding: 0;
- padding: 0;
- }
-
- .box {
- width: 200px;
- height: 198px;
- }
-
- .sticky {
- position: sticky;
- top: 100px;
- background-color: green;
- }
-
- .indicator {
- position: absolute;
- top: 0;
- left: 0;
- background-color: red;
- }
-</style>
-<script>
- function doTest()
- {
- window.scrollTo(0, 100);
- }
- window.addEventListener('load', doTest, false);
-</script>
-</head>
-<body>
- <div class="group">
- <div class="indicator box" style="top: 200px;"></div>
- <table class="container">
- <tbody>
- <tr class="sticky">
- <td class="box"></td>
- </tr>
- <tr>
- <td></td>
- </tr>
- </tbody>
- </table>
- </div>
-
- <div class="group" style="top: 100px">
- <div class="indicator box" style="top: 100px;"></div>
- <table class="container" style="">
- <tbody>
- <tr class="sticky">
- <td class="box"></td>
- </tr>
- <tr>
- <td></td>
- </tr>
- </tbody>
- </table>
- </div>
-
- <div class="group" style="top: 200px">
- <div class="indicator box" style="top: 0;"></div>
- <table class="container" style="">
- <tbody>
- <tr class="sticky">
- <td class="box"></td>
- </tr>
- <tr>
- <td></td>
- </tr>
- </tbody>
- </table>
- </div>
- <div style="position: absolute; top: 620px;">
- This test checks that sticky positioned table rows are contained by their table.
- There should be no red.
- </div>
-</body>
-</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/sticky/sticky-table-row-top-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698