<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[190893] trunk</title>
</head>
<body>
<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/190893">190893</a></dd>
<dt>Author</dt> <dd>zalan@apple.com</dd>
<dt>Date</dt> <dd>2015-10-12 15:33:03 -0700 (Mon, 12 Oct 2015)</dd>
</dl>
<h3>Log Message</h3>
<pre>display: table-cell; bug when resizing window
https://bugs.webkit.org/show_bug.cgi?id=138167
Reviewed by David Hyatt.
Clean up anonymous table wrappers all the way up to RenderTable.
This patch ensures that we don't keep the generated RenderTable/RenderSection/RenderCaption/RenderRow
objects around in the tree anymore when the last child is destroyed.
Import W3C CSS2.1 anonymous table tests.
Source/WebCore:
* rendering/RenderObject.cpp:
(WebCore::RenderObject::destroyAndCleanupAnonymousWrappers):
LayoutTests:
* css2.1/tables/table-anonymous-objects-015.xht: Added.
* css2.1/tables/table-anonymous-objects-016.xht: Added.
* css2.1/tables/table-anonymous-objects-023.xht: Added.
* css2.1/tables/table-anonymous-objects-024.xht: Added.
* css2.1/tables/table-anonymous-objects-035.xht: Added.
* css2.1/tables/table-anonymous-objects-036.xht: Added.
* css2.1/tables/table-anonymous-objects-037.xht: Added.
* css2.1/tables/table-anonymous-objects-038.xht: Added.
* css2.1/tables/table-anonymous-objects-045.xht: Added.
* css2.1/tables/table-anonymous-objects-046.xht: Added.
* css2.1/tables/table-anonymous-objects-047.xht: Added.
* css2.1/tables/table-anonymous-objects-048.xht: Added.
* css2.1/tables/table-anonymous-objects-049.xht: Added.
* css2.1/tables/table-anonymous-objects-050.xht: Added.
* css2.1/tables/table-anonymous-objects-055.xht: Added.
* css2.1/tables/table-anonymous-objects-056.xht: Added.
* css2.1/tables/table-anonymous-objects-091.xht: Added.
* css2.1/tables/table-anonymous-objects-092.xht: Added.
* css2.1/tables/table-anonymous-objects-099.xht: Added.
* css2.1/tables/table-anonymous-objects-100.xht: Added.
* css2.1/tables/table-anonymous-objects-105.xht: Added.
* css2.1/tables/table-anonymous-objects-106.xht: Added.
* css2.1/tables/table-anonymous-objects-107.xht: Added.
* css2.1/tables/table-anonymous-objects-108.xht: Added.
* css2.1/tables/table-anonymous-objects-109.xht: Added.
* css2.1/tables/table-anonymous-objects-110.xht: Added.
* css2.1/tables/table-anonymous-objects-111.xht: Added.
* css2.1/tables/table-anonymous-objects-112.xht: Added.
* css2.1/tables/table-anonymous-objects-113.xht: Added.
* css2.1/tables/table-anonymous-objects-114.xht: Added.
* css2.1/tables/table-anonymous-objects-115.xht: Added.
* css2.1/tables/table-anonymous-objects-116.xht: Added.
* css2.1/tables/table-anonymous-objects-121.xht: Added.
* css2.1/tables/table-anonymous-objects-122.xht: Added.
* css2.1/tables/table-anonymous-objects-123.xht: Added.
* css2.1/tables/table-anonymous-objects-124.xht: Added.
* css2.1/tables/table-anonymous-objects-139.xht: Added.
* css2.1/tables/table-anonymous-objects-140.xht: Added.
* css2.1/tables/table-anonymous-objects-149.xht: Added.
* css2.1/tables/table-anonymous-objects-150.xht: Added.
* css2.1/tables/table-anonymous-objects-155.xht: Added.
* css2.1/tables/table-anonymous-objects-156.xht: Added.
* css2.1/tables/table-anonymous-objects-159.xht: Added.
* css2.1/tables/table-anonymous-objects-160.xht: Added.
* css2.1/tables/table-anonymous-objects-165.xht: Added.
* css2.1/tables/table-anonymous-objects-166.xht: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-015-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-016-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-023-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-024-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-035-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-036-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-037-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-038-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-045-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-046-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-047-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-048-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-049-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-050-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-055-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-056-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-091-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-092-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-099-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-100-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-105-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-106-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-107-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-108-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-109-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-110-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-111-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-112-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-113-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-114-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-115-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-116-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-121-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-122-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-123-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-124-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-139-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-140-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-149-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-150-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-155-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-156-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-159-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-160-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-165-expected.txt: Added.
* platform/mac/css2.1/tables/table-anonymous-objects-166-expected.txt: Added.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorerenderingRenderObjectcpp">trunk/Source/WebCore/rendering/RenderObject.cpp</a></li>
</ul>
<h3>Added Paths</h3>
<ul>
<li>trunk/LayoutTests/css2.1/tables/</li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects015xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-015.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects016xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-016.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects023xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-023.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects024xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-024.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects035xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-035.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects036xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-036.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects037xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-037.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects038xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-038.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects045xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-045.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects046xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-046.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects047xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-047.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects048xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-048.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects049xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-049.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects050xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-050.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects055xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-055.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects056xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-056.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects091xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-091.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects092xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-092.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects099xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-099.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects100xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-100.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects105xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-105.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects106xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-106.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects107xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-107.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects108xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-108.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects109xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-109.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects110xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-110.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects111xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-111.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects112xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-112.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects113xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-113.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects114xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-114.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects115xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-115.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects116xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-116.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects121xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-121.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects122xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-122.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects123xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-123.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects124xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-124.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects139xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-139.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects140xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-140.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects149xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-149.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects150xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-150.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects155xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-155.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects156xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-156.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects159xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-159.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects160xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-160.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects165xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-165.xht</a></li>
<li><a href="#trunkLayoutTestscss21tablestableanonymousobjects166xht">trunk/LayoutTests/css2.1/tables/table-anonymous-objects-166.xht</a></li>
<li>trunk/LayoutTests/platform/mac/css2.1/tables/</li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects015expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-015-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects016expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-016-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects023expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-023-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects024expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-024-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects035expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-035-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects036expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-036-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects037expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-037-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects038expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-038-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects045expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-045-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects046expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-046-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects047expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-047-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects048expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-048-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects049expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-049-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects050expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-050-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects055expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-055-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects056expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-056-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects091expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-091-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects092expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-092-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects099expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-099-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects100expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-100-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects105expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-105-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects106expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-106-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects107expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-107-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects108expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-108-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects109expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-109-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects110expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-110-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects111expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-111-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects112expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-112-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects113expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-113-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects114expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-114-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects115expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-115-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects116expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-116-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects121expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-121-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects122expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-122-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects123expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-123-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects124expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-124-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects139expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-139-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects140expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-140-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects149expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-149-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects150expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-150-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects155expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-155-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects156expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-156-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects159expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-159-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects160expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-160-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects165expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-165-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmaccss21tablestableanonymousobjects166expectedtxt">trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-166-expected.txt</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (190892 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2015-10-12 22:15:49 UTC (rev 190892)
+++ trunk/LayoutTests/ChangeLog        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -1,3 +1,109 @@
</span><ins>+2015-10-12 Zalan Bujtas <zalan@apple.com>
+
+ display: table-cell; bug when resizing window
+ https://bugs.webkit.org/show_bug.cgi?id=138167
+
+ Reviewed by David Hyatt.
+
+ Clean up anonymous table wrappers all the way up to RenderTable.
+ This patch ensures that we don't keep the generated RenderTable/RenderSection/RenderCaption/RenderRow
+ objects around in the tree anymore when the last child is destroyed.
+
+ Import W3C CSS2.1 anonymous table tests.
+
+ * css2.1/tables/table-anonymous-objects-015.xht: Added.
+ * css2.1/tables/table-anonymous-objects-016.xht: Added.
+ * css2.1/tables/table-anonymous-objects-023.xht: Added.
+ * css2.1/tables/table-anonymous-objects-024.xht: Added.
+ * css2.1/tables/table-anonymous-objects-035.xht: Added.
+ * css2.1/tables/table-anonymous-objects-036.xht: Added.
+ * css2.1/tables/table-anonymous-objects-037.xht: Added.
+ * css2.1/tables/table-anonymous-objects-038.xht: Added.
+ * css2.1/tables/table-anonymous-objects-045.xht: Added.
+ * css2.1/tables/table-anonymous-objects-046.xht: Added.
+ * css2.1/tables/table-anonymous-objects-047.xht: Added.
+ * css2.1/tables/table-anonymous-objects-048.xht: Added.
+ * css2.1/tables/table-anonymous-objects-049.xht: Added.
+ * css2.1/tables/table-anonymous-objects-050.xht: Added.
+ * css2.1/tables/table-anonymous-objects-055.xht: Added.
+ * css2.1/tables/table-anonymous-objects-056.xht: Added.
+ * css2.1/tables/table-anonymous-objects-091.xht: Added.
+ * css2.1/tables/table-anonymous-objects-092.xht: Added.
+ * css2.1/tables/table-anonymous-objects-099.xht: Added.
+ * css2.1/tables/table-anonymous-objects-100.xht: Added.
+ * css2.1/tables/table-anonymous-objects-105.xht: Added.
+ * css2.1/tables/table-anonymous-objects-106.xht: Added.
+ * css2.1/tables/table-anonymous-objects-107.xht: Added.
+ * css2.1/tables/table-anonymous-objects-108.xht: Added.
+ * css2.1/tables/table-anonymous-objects-109.xht: Added.
+ * css2.1/tables/table-anonymous-objects-110.xht: Added.
+ * css2.1/tables/table-anonymous-objects-111.xht: Added.
+ * css2.1/tables/table-anonymous-objects-112.xht: Added.
+ * css2.1/tables/table-anonymous-objects-113.xht: Added.
+ * css2.1/tables/table-anonymous-objects-114.xht: Added.
+ * css2.1/tables/table-anonymous-objects-115.xht: Added.
+ * css2.1/tables/table-anonymous-objects-116.xht: Added.
+ * css2.1/tables/table-anonymous-objects-121.xht: Added.
+ * css2.1/tables/table-anonymous-objects-122.xht: Added.
+ * css2.1/tables/table-anonymous-objects-123.xht: Added.
+ * css2.1/tables/table-anonymous-objects-124.xht: Added.
+ * css2.1/tables/table-anonymous-objects-139.xht: Added.
+ * css2.1/tables/table-anonymous-objects-140.xht: Added.
+ * css2.1/tables/table-anonymous-objects-149.xht: Added.
+ * css2.1/tables/table-anonymous-objects-150.xht: Added.
+ * css2.1/tables/table-anonymous-objects-155.xht: Added.
+ * css2.1/tables/table-anonymous-objects-156.xht: Added.
+ * css2.1/tables/table-anonymous-objects-159.xht: Added.
+ * css2.1/tables/table-anonymous-objects-160.xht: Added.
+ * css2.1/tables/table-anonymous-objects-165.xht: Added.
+ * css2.1/tables/table-anonymous-objects-166.xht: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-015-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-016-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-023-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-024-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-035-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-036-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-037-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-038-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-045-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-046-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-047-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-048-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-049-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-050-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-055-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-056-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-091-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-092-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-099-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-100-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-105-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-106-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-107-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-108-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-109-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-110-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-111-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-112-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-113-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-114-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-115-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-116-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-121-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-122-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-123-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-124-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-139-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-140-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-149-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-150-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-155-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-156-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-159-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-160-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-165-expected.txt: Added.
+ * platform/mac/css2.1/tables/table-anonymous-objects-166-expected.txt: Added.
+
</ins><span class="cx"> 2015-10-12 Jon Honeycutt <jhoneycutt@apple.com>
</span><span class="cx">
</span><span class="cx"> Unreviewed, more Mac test gardening after r190629.
</span></span></pre></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects015xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-015.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-015.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-015.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,34 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 208305-2.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <style id="s" type="text/css">
+ span { display: block ! important }
+ </style>
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var s = document.getElementById("s");
+ s.disabled = true;
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-cell">a b</span>
+ <span style="display: table-cell">c d</span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ a bc d
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-015.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects016xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-016.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-016.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-016.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,34 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 208305-2.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <style id="s" type="text/css">
+ span { display: block ! important }
+ </style>
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var s = document.getElementById("s");
+ s.disabled = true;
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-cell">a b</span>
+ <span style="display: table-cell">c d</span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ a bc d
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-016.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects023xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-023.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-023.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-023.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,35 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 293576-1.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ for (var i = 0; i < 10; ++i) {
+ document.body.offsetWidth;
+ t.style.display = "table-caption";
+ document.body.offsetWidth;
+ t.style.display = "";
+ }
+ document.documentElement.className = '';
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table border="5"><tbody><tr><td id="t">Some text</td></tr></tbody></table>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table border="5"><tbody><tr><td>Some text</td></tr></tbody></table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-023.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects024xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-024.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-024.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-024.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,35 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 293576-1.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ for (var i = 0; i < 10; ++i) {
+ document.body.offsetWidth;
+ t.style.display = "table-caption";
+ document.body.offsetWidth;
+ t.style.display = "";
+ }
+ document.documentElement.className = '';
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table border="5"><tbody><tr><td id="t">Some text</td></tr></tbody></table>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table border="5"><tbody><tr><td>Some text</td></tr></tbody></table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-024.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects035xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-035.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-035.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-035.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,43 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 339388-1a.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var n = document.getElementById("n");
+ for (var i = 0; i < 5; ++i) {
+ n.style.cssFloat = "left";
+ document.body.offsetWidth;
+ n.style.cssFloat = "";
+ document.body.offsetWidth;
+ }
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table border="5">
+ <tr>
+ <td id="n">TD</td>
+ </tr>
+ </table>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table border="5">
+ <tr>
+ <td id="n">TD</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-035.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects036xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-036.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-036.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-036.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,43 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 339388-1a.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var n = document.getElementById("n");
+ for (var i = 0; i < 5; ++i) {
+ n.style.cssFloat = "left";
+ document.body.offsetWidth;
+ n.style.cssFloat = "";
+ document.body.offsetWidth;
+ }
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table border="5">
+ <tr>
+ <td id="n">TD</td>
+ </tr>
+ </table>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table border="5">
+ <tr>
+ <td id="n">TD</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-036.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects037xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-037.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-037.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-037.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,43 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 339388-1b.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var n = document.getElementById("n");
+ for (var i = 0; i < 5; ++i) {
+ n.style.position = "absolute";
+ document.body.offsetWidth;
+ n.style.position = "";
+ document.body.offsetWidth;
+ }
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table border="5">
+ <tr>
+ <td id="n">TD</td>
+ </tr>
+ </table>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table border="5">
+ <tr>
+ <td id="n">TD</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-037.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects038xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-038.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-038.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-038.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,43 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 339388-1b.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var n = document.getElementById("n");
+ for (var i = 0; i < 5; ++i) {
+ n.style.position = "absolute";
+ document.body.offsetWidth;
+ n.style.position = "";
+ document.body.offsetWidth;
+ }
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table border="5">
+ <tr>
+ <td id="n">TD</td>
+ </tr>
+ </table>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table border="5">
+ <tr>
+ <td id="n">TD</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-038.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects045xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-045.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-045.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-045.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 372641-1a.xhtml</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom nonHTML'/>
+
+</head>
+<body>
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+
+<table border="1" id="table">XXX<tbody><tr><td>TD</td></tr></tbody></table>
+
+<script type="text/javascript"><![CDATA[
+document.body.offsetWidth;
+document.getElementById("table").firstChild.data = '';
+]]></script>
+
+</div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+
+<table border="1"><tbody><tr><td>TD</td></tr></tbody></table>
+
+</div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-045.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects046xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-046.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-046.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-046.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 372641-1a.xhtml</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom nonHTML'/>
+
+</head>
+<body>
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+
+<table border="1" id="table">XXX<tbody><tr><td>TD</td></tr></tbody></table>
+
+<script type="text/javascript"><![CDATA[
+document.body.offsetWidth;
+document.getElementById("table").firstChild.data = '';
+]]></script>
+
+</div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+
+<table border="1"><tbody><tr><td>TD</td></tr></tbody></table>
+
+</div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-046.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects047xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-047.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-047.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-047.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 372641-1b.xhtml</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom nonHTML'/>
+
+</head>
+<body>
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+
+<table border="1"><tbody id="tbody">XXX<tr><td>TD</td></tr></tbody></table>
+
+<script type="text/javascript"><![CDATA[
+document.body.offsetWidth;
+document.getElementById("tbody").firstChild.data = '';
+]]></script>
+
+</div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+
+<table border="1"><tbody><tr><td>TD</td></tr></tbody></table>
+
+</div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-047.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects048xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-048.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-048.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-048.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 372641-1b.xhtml</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom nonHTML'/>
+
+</head>
+<body>
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+
+<table border="1"><tbody id="tbody">XXX<tr><td>TD</td></tr></tbody></table>
+
+<script type="text/javascript"><![CDATA[
+document.body.offsetWidth;
+document.getElementById("tbody").firstChild.data = '';
+]]></script>
+
+</div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+
+<table border="1"><tbody><tr><td>TD</td></tr></tbody></table>
+
+</div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-048.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects049xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-049.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-049.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-049.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 372641-1c.xhtml</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom nonHTML'/>
+
+</head>
+<body>
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+
+<table border="1"><tbody><tr id="tr">XXX<td>TD</td></tr></tbody></table>
+
+<script type="text/javascript"><![CDATA[
+document.body.offsetWidth;
+document.getElementById("tr").firstChild.data = '';
+]]></script>
+
+</div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+
+<table border="1"><tbody><tr><td>TD</td></tr></tbody></table>
+
+</div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-049.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects050xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-050.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-050.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-050.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 372641-1c.xhtml</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom nonHTML'/>
+
+</head>
+<body>
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+
+<table border="1"><tbody><tr id="tr">XXX<td>TD</td></tr></tbody></table>
+
+<script type="text/javascript"><![CDATA[
+document.body.offsetWidth;
+document.getElementById("tr").firstChild.data = '';
+]]></script>
+
+</div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+
+<table border="1"><tbody><tr><td>TD</td></tr></tbody></table>
+
+</div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-050.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects055xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-055.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-055.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-055.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,42 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 407115-1.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content=''/>
+
+<style type="text/css">
+.outer { border: 1px solid black; }
+.cell { display: table-cell; border: 1px solid green; }
+.marg { margin: 1em 0; }
+</style>
+</head>
+<body onload="var c1 = document.getElementById('c1'); c1.parentNode.removeChild(c1);">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+
+<div class="outer">
+<div class="marg"><span id="c1" class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+</div>
+
+</div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+
+<div class="outer">
+<div class="marg"></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+</div>
+
+</div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-055.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects056xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-056.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-056.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-056.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,42 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test 407115-1.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content=''/>
+
+<style type="text/css">
+.outer { border: 1px solid black; }
+.cell { display: table-cell; border: 1px solid green; }
+.marg { margin: 1em 0; }
+</style>
+</head>
+<body onload="var c1 = document.getElementById('c1'); c1.parentNode.removeChild(c1);">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+
+<div class="outer">
+<div class="marg"><span id="c1" class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+</div>
+
+</div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+
+<div class="outer">
+<div class="marg"></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+<div class="marg"><span class="cell"><b>Hello Kitty</b></span></div>
+</div>
+
+</div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-056.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects091xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-091.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-091.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-091.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,62 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+
+ <title>CSS Test: Auto-imported from Gecko test infer-cells-4.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content=''/>
+</head>
+<body style="font-family: monospace">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row">
+ <!-- Trailing spaces in the spans needed only if the first test in
+ infer-cells-1.html is valid -->
+ <span>Row 1, </span>
+ <span>Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span>Row </span>
+ <span>22, </span>
+ <span>Col </span>
+ <span>2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: inline-table">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span>Row </span>
+ <span>333, </span>
+ <span>Col </span>
+ <span>3</span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-091.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects092xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-092.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-092.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-092.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,62 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+
+ <title>CSS Test: Auto-imported from Gecko test infer-cells-4.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content=''/>
+</head>
+<body style="font-family: monospace">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row">
+ <!-- Trailing spaces in the spans needed only if the first test in
+ infer-cells-1.html is valid -->
+ <span>Row 1, </span>
+ <span>Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span>Row </span>
+ <span>22, </span>
+ <span>Col </span>
+ <span>2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: inline-table">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span>Row </span>
+ <span>333, </span>
+ <span>Col </span>
+ <span>3</span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-092.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects099xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-099.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-099.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-099.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-1.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-099.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects100xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-100.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-100.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-100.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-1.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-100.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects105xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-105.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-105.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-105.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-4.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table-row-group">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-105.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects106xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-106.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-106.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-106.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-4.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table-row-group">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-106.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects107xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-107.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-107.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-107.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-5.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-107.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects108xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-108.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-108.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-108.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-5.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-108.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects109xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-109.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-109.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-109.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-6.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table-column">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-109.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects110xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-110.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-110.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-110.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-6.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table-column">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-110.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects111xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-111.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-111.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-111.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-7.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table-column-group">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-111.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects112xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-112.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-112.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-112.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-7.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table-column-group">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-112.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects113xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-113.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-113.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-113.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-8.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table-caption">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-113.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects114xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-114.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-114.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-114.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-8.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="display: table-caption">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-114.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects115xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-115.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-115.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-115.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-9.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <div>
+ <span>a b</span><span id="t" style="display: table-cell"></span><span>c d</span>
+ </div>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ a bc d
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-115.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects116xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-116.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-116.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-116.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-9.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <div>
+ <span>a b</span><span id="t" style="display: table-cell"></span><span>c d</span>
+ </div>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ a bc d
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-116.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects121xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-121.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-121.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-121.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-12.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <div>
+ <span>a b</span><span id="t" style="display: table-row"></span><span>c d</span>
+ </div>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ a bc d
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-121.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects122xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-122.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-122.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-122.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,32 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-12.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <div>
+ <span>a b</span><span id="t" style="display: table-row"></span><span>c d</span>
+ </div>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ a bc d
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-122.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects123xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-123.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-123.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-123.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-13.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="position: absolute">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-123.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects124xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-124.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-124.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-124.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,61 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-removal-13.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var t = document.getElementById("t");
+ t.parentNode.removeChild(t);
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span id="t" style="position: absolute">To be removed</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-124.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects139xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-139.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-139.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-139.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,63 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-switch-block-to-cell-3.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ document.getElementById("t").style.display = "table-cell";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display:table">
+ <span style="display: table-row-group">
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: block">Row 333, Col 1</span>
+ <span style="display: block" id="t">Row 333, Col 2</span>
+ <span style="display: block">Row 333, Col 3</span>
+ </span>
+ </span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-139.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects140xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-140.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-140.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-140.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,63 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-switch-block-to-cell-3.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ document.getElementById("t").style.display = "table-cell";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display:table">
+ <span style="display: table-row-group">
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: block">Row 333, Col 1</span>
+ <span style="display: block" id="t">Row 333, Col 2</span>
+ <span style="display: block">Row 333, Col 3</span>
+ </span>
+ </span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-140.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects149xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-149.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-149.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-149.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,63 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-switch-inline-to-cell-3.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ document.getElementById("t").style.display = "table-cell";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display:table">
+ <span style="display: table-row">
+ <span>Row 1, Col 1</span>
+ <span id="t">Row 1, Col 2</span>
+ <span>Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-149.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects150xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-150.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-150.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-150.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,63 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test dynamic-switch-inline-to-cell-3.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ document.getElementById("t").style.display = "table-cell";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display:table">
+ <span style="display: table-row">
+ <span>Row 1, Col 1</span>
+ <span id="t">Row 1, Col 2</span>
+ <span>Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row-group">
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-150.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects155xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-155.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-155.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-155.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,55 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test white-space-1.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var n = document.getElementById("t").nextSibling;
+ n.data = "Row 22, Col 1Row 22, Col 2Row 22, Col 3";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell" id="t">Row 1, Col 3</span>
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ </table>
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ </table>
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-155.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects156xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-156.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-156.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-156.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,55 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test white-space-1.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var n = document.getElementById("t").nextSibling;
+ n.data = "Row 22, Col 1Row 22, Col 2Row 22, Col 3";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell" id="t">Row 1, Col 3</span>
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ </table>
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ </table>
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-156.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects159xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-159.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-159.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-159.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,64 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test white-space-3.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ try {
+ document.normalize();
+ } catch (e) {}
+ var n = document.getElementById("t").nextSibling;
+ n.data = " ";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell" id="t">Row 22, Col 1</span>This is a test<span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-159.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects160xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-160.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-160.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-160.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,64 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test white-space-3.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ try {
+ document.normalize();
+ } catch (e) {}
+ var n = document.getElementById("t").nextSibling;
+ n.data = " ";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell" id="t">Row 22, Col 1</span>This is a test<span style="display: table-cell">Row 22, Col 2</span>
+ <span style="display: table-cell">Row 22, Col 3</span>
+ </span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-160.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects165xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-165.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-165.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-165.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,59 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test white-space-6.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var n = document.getElementById("t").nextSibling;
+ n.data = "Row 22, Col 3";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span style="display: table-cell" id="t">Row 22, Col 2</span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </span>
+ </div>
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-165.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestscss21tablestableanonymousobjects166xht"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-166.xht (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/css2.1/tables/table-anonymous-objects-166.xht         (rev 0)
+++ trunk/LayoutTests/css2.1/tables/table-anonymous-objects-166.xht        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,59 @@
</span><ins>+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <title>CSS Test: Auto-imported from Gecko test white-space-6.html</title>
+ <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/>
+ <meta name="flags" content='dom'/>
+
+ <script type="text/javascript"><![CDATA[
+ function doTest() {
+ var n = document.getElementById("t").nextSibling;
+ n.data = "Row 22, Col 3";
+ document.documentElement.className = "";
+ }
+ ]]></script>
+ </head>
+<body style="font-family: monospace" onload="doTest()">
+<p>There should be no red below, except for antialiasing issues.</p>
+<div style="position: relative; font-size: 2em;">
+<div style="position: absolute; z-index: 2; top: 0; color: green; padding: 1px;">
+
+ <span style="display: table-row-group">
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 1, Col 1</span>
+ <span style="display: table-cell">Row 1, Col 2</span>
+ <span style="display: table-cell">Row 1, Col 3</span>
+ </span>
+ <span style="display: table-cell">Row 22, Col 1</span>
+ <span style="display: table-cell" id="t">Row 22, Col 2</span>
+ <span style="display: table-row">
+ <span style="display: table-cell">Row 333, Col 1</span>
+ <span style="display: table-cell">Row 333, Col 2</span>
+ <span style="display: table-cell">Row 333, Col 3</span>
+ </span>
+ </span>
+ </div>
+<div style="position: relative; z-index: 1; color: red; padding: 1px;">
+
+ <table cellpadding="0" cellspacing="0" style="margin: 0; padding: 0; border: none">
+ <tr>
+ <td>Row 1, Col 1</td>
+ <td>Row 1, Col 2</td>
+ <td>Row 1, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 22, Col 1</td>
+ <td>Row 22, Col 2</td>
+ <td>Row 22, Col 3</td>
+ </tr>
+ <tr>
+ <td>Row 333, Col 1</td>
+ <td>Row 333, Col 2</td>
+ <td>Row 333, Col 3</td>
+ </tr>
+ </table>
+ </div>
+</div>
+</body>
+</html>
</ins><span class="cx">Property changes on: trunk/LayoutTests/css2.1/tables/table-anonymous-objects-166.xht
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnexecutable"></a>
<div class="addfile"><h4>Added: svn:executable</h4></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects015expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-015-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-015-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-015-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,25 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x97
+ RenderBlock {html} at (0,0) size 800x97
+ RenderBody {body} at (8,16) size 784x73
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) {div} at (0,34) size 784x39
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x39 [color=#FF0000]
+ RenderTable at (1,1) size 78x37
+ RenderTableSection (anonymous) at (0,0) size 78x37
+ RenderTableRow (anonymous) at (0,0) size 78x37
+ RenderTableCell {span} at (0,0) size 39x37 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 39x37
+ text run at (0,0) width 39: "a b"
+ RenderTableCell {span} at (39,0) size 39x37 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 39x37
+ text run at (0,0) width 39: "c d"
+layer at (8,50) size 78x39
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 79x39 [color=#008000]
+ RenderText zI: 2 {#text} at (1,1) size 77x37
+ text run at (1,1) width 77: "a bc d"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects016expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-016-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-016-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-016-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,25 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x97
+ RenderBlock {html} at (0,0) size 800x97
+ RenderBody {body} at (8,16) size 784x73
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) {div} at (0,34) size 784x39
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x39 [color=#FF0000]
+ RenderText zI: 1 {#text} at (1,1) size 77x37
+ text run at (1,1) width 77: "a bc d"
+layer at (8,50) size 80x39
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 80x39 [color=#008000]
+ RenderTable at (1,1) size 78x37
+ RenderTableSection (anonymous) at (0,0) size 78x37
+ RenderTableRow (anonymous) at (0,0) size 78x37
+ RenderTableCell {span} at (0,0) size 39x37 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 39x37
+ text run at (0,0) width 39: "a b"
+ RenderTableCell {span} at (39,0) size 39x37 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 39x37
+ text run at (0,0) width 39: "c d"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects023expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-023-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-023-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-023-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x115
+ RenderBlock {html} at (0,0) size 800x115
+ RenderBody {body} at (8,16) size 784x91
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) {div} at (0,34) size 784x57
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x57 [color=#FF0000]
+ RenderTable {table} at (1,1) size 147x55 [border: (5px outset #808080)]
+ RenderTableSection {tbody} at (5,5) size 137x45
+ RenderTableRow {tr} at (0,2) size 137x41
+ RenderTableCell {td} at (2,2) size 133x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 129x37
+ text run at (2,2) width 129: "Some text"
+layer at (8,50) size 149x57
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 149x57 [color=#008000]
+ RenderTable {table} at (1,1) size 147x55 [border: (5px outset #808080)]
+ RenderTableSection {tbody} at (5,5) size 137x45
+ RenderTableRow {tr} at (0,2) size 137x41
+ RenderTableCell {td} at (2,2) size 133x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 129x37
+ text run at (2,2) width 129: "Some text"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects024expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-024-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-024-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-024-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x115
+ RenderBlock {html} at (0,0) size 800x115
+ RenderBody {body} at (8,16) size 784x91
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) {div} at (0,34) size 784x57
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x57 [color=#FF0000]
+ RenderTable {table} at (1,1) size 147x55 [border: (5px outset #808080)]
+ RenderTableSection {tbody} at (5,5) size 137x45
+ RenderTableRow {tr} at (0,2) size 137x41
+ RenderTableCell {td} at (2,2) size 133x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 129x37
+ text run at (2,2) width 129: "Some text"
+layer at (8,50) size 149x57
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 149x57 [color=#008000]
+ RenderTable {table} at (1,1) size 147x55 [border: (5px outset #808080)]
+ RenderTableSection {tbody} at (5,5) size 137x45
+ RenderTableRow {tr} at (0,2) size 137x41
+ RenderTableCell {td} at (2,2) size 133x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 129x37
+ text run at (2,2) width 129: "Some text"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects035expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-035-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-035-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-035-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x115
+ RenderBlock {html} at (0,0) size 800x115
+ RenderBody {body} at (8,16) size 784x91
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) {div} at (0,34) size 784x57
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x57 [color=#FF0000]
+ RenderTable {table} at (1,1) size 61x55 [border: (5px outset #808080)]
+ RenderTableSection (anonymous) at (5,5) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 63x57
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 63x57 [color=#008000]
+ RenderTable {table} at (1,1) size 61x55 [border: (5px outset #808080)]
+ RenderTableSection (anonymous) at (5,5) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects036expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-036-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-036-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-036-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x115
+ RenderBlock {html} at (0,0) size 800x115
+ RenderBody {body} at (8,16) size 784x91
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) {div} at (0,34) size 784x57
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x57 [color=#FF0000]
+ RenderTable {table} at (1,1) size 61x55 [border: (5px outset #808080)]
+ RenderTableSection (anonymous) at (5,5) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 63x57
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 63x57 [color=#008000]
+ RenderTable {table} at (1,1) size 61x55 [border: (5px outset #808080)]
+ RenderTableSection (anonymous) at (5,5) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects037expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-037-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-037-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-037-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x115
+ RenderBlock {html} at (0,0) size 800x115
+ RenderBody {body} at (8,16) size 784x91
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) {div} at (0,34) size 784x57
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x57 [color=#FF0000]
+ RenderTable {table} at (1,1) size 61x55 [border: (5px outset #808080)]
+ RenderTableSection (anonymous) at (5,5) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 63x57
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 63x57 [color=#008000]
+ RenderTable {table} at (1,1) size 61x55 [border: (5px outset #808080)]
+ RenderTableSection (anonymous) at (5,5) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects038expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-038-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-038-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-038-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x115
+ RenderBlock {html} at (0,0) size 800x115
+ RenderBody {body} at (8,16) size 784x91
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) {div} at (0,34) size 784x57
+layer at (8,50) size 784x57
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x57 [color=#FF0000]
+ RenderTable {table} at (1,1) size 61x55 [border: (5px outset #808080)]
+ RenderTableSection (anonymous) at (5,5) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 63x57
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 63x57 [color=#008000]
+ RenderTable {table} at (1,1) size 61x55 [border: (5px outset #808080)]
+ RenderTableSection (anonymous) at (5,5) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects045expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-045-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-045-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-045-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x107
+ RenderBlock {html} at (0,0) size 800x107
+ RenderBody {body} at (8,16) size 784x83
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) {div} at (0,34) size 784x49
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x49 [color=#FF0000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 55x49
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 55x49 [color=#008000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects046expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-046-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-046-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-046-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x107
+ RenderBlock {html} at (0,0) size 800x107
+ RenderBody {body} at (8,16) size 784x83
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) {div} at (0,34) size 784x49
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x49 [color=#FF0000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 55x49
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 55x49 [color=#008000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects047expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-047-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-047-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-047-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x107
+ RenderBlock {html} at (0,0) size 800x107
+ RenderBody {body} at (8,16) size 784x83
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) {div} at (0,34) size 784x49
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x49 [color=#FF0000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 55x49
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 55x49 [color=#008000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects048expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-048-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-048-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-048-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x107
+ RenderBlock {html} at (0,0) size 800x107
+ RenderBody {body} at (8,16) size 784x83
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) {div} at (0,34) size 784x49
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x49 [color=#FF0000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 55x49
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 55x49 [color=#008000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects049expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-049-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-049-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-049-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x107
+ RenderBlock {html} at (0,0) size 800x107
+ RenderBody {body} at (8,16) size 784x83
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) {div} at (0,34) size 784x49
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x49 [color=#FF0000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 55x49
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 55x49 [color=#008000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects050expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-050-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-050-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-050-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,26 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x107
+ RenderBlock {html} at (0,0) size 800x107
+ RenderBody {body} at (8,16) size 784x83
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) {div} at (0,34) size 784x49
+layer at (8,50) size 784x49
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x49 [color=#FF0000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
+layer at (8,50) size 55x49
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 55x49 [color=#008000]
+ RenderTable {table} at (1,1) size 53x47 [border: (1px outset #808080)]
+ RenderTableSection {tbody} at (1,1) size 51x45
+ RenderTableRow {tr} at (0,2) size 51x41
+ RenderTableCell {td} at (2,2) size 47x41 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 43x37
+ text run at (2,2) width 43: "TD"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects055expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-055-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-055-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-055-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,66 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x307
+ RenderBlock {html} at (0,0) size 800x307
+ RenderBody {body} at (8,16) size 784x283
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x249
+ RenderBlock (relative positioned) {div} at (0,34) size 784x249
+layer at (8,50) size 784x249
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x249 [color=#FF0000]
+ RenderBlock {div} at (1,1) size 782x247 [border: (1px solid #000000)]
+ RenderBlock {div} at (1,33) size 780x0
+ RenderBlock {div} at (1,33) size 780x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+ RenderBlock {div} at (1,104) size 780x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+ RenderBlock {div} at (1,175) size 780x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+layer at (8,50) size 158x249
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 158x249 [color=#008000]
+ RenderBlock {div} at (1,1) size 156x247 [border: (1px solid #000000)]
+ RenderBlock {div} at (1,33) size 154x0
+ RenderBlock {div} at (1,33) size 154x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+ RenderBlock {div} at (1,104) size 154x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+ RenderBlock {div} at (1,175) size 154x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects056expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-056-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-056-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-056-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,66 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x307
+ RenderBlock {html} at (0,0) size 800x307
+ RenderBody {body} at (8,16) size 784x283
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x249
+ RenderBlock (relative positioned) {div} at (0,34) size 784x249
+layer at (8,50) size 784x249
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x249 [color=#FF0000]
+ RenderBlock {div} at (1,1) size 782x247 [border: (1px solid #000000)]
+ RenderBlock {div} at (1,33) size 780x0
+ RenderBlock {div} at (1,33) size 780x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+ RenderBlock {div} at (1,104) size 780x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+ RenderBlock {div} at (1,175) size 780x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+layer at (8,50) size 158x249
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 158x249 [color=#008000]
+ RenderBlock {div} at (1,1) size 156x247 [border: (1px solid #000000)]
+ RenderBlock {div} at (1,33) size 154x0
+ RenderBlock {div} at (1,33) size 154x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+ RenderBlock {div} at (1,104) size 154x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
+ RenderBlock {div} at (1,175) size 154x39
+ RenderTable at (0,0) size 154x39
+ RenderTableSection (anonymous) at (0,0) size 154x39
+ RenderTableRow (anonymous) at (0,0) size 154x39
+ RenderTableCell {span} at (0,0) size 154x39 [border: (1px solid #008000)] [r=0 c=0 rs=1 cs=1]
+ RenderInline {b} at (0,0) size 152x37
+ RenderText {#text} at (1,1) size 152x37
+ text run at (1,1) width 152: "Hello Kitty"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects091expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-091-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-091-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-091-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,110 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell (anonymous) at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 110x30
+ RenderText {#text} at (0,0) size 110x30
+ text run at (0,0) width 110: "Row 1, "
+ RenderInline {span} at (0,0) size 79x30
+ RenderText {#text} at (109,0) size 79x30
+ text run at (109,0) width 79: "Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell (anonymous) at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderTable {span} at (0,0) size 188x30
+ RenderTableSection (anonymous) at (0,0) size 188x30
+ RenderTableRow (anonymous) at (0,0) size 188x30
+ RenderTableCell (anonymous) at (0,0) size 188x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {span} at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell (anonymous) at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 63x30
+ RenderText {#text} at (0,0) size 63x30
+ text run at (0,0) width 63: "Row "
+ RenderInline {span} at (0,0) size 63x30
+ RenderText {#text} at (62,0) size 63x30
+ text run at (62,0) width 63: "22, "
+ RenderInline {span} at (0,0) size 64x30
+ RenderText {#text} at (124,0) size 64x30
+ text run at (124,0) width 64: "Col "
+ RenderInline {span} at (0,0) size 16x30
+ RenderText {#text} at (187,0) size 16x30
+ text run at (187,0) width 16: "2"
+ RenderTableCell {span} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,60) size 657x30
+ RenderTableCell (anonymous) at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderTable {span} at (0,0) size 219x30
+ RenderTableSection (anonymous) at (0,0) size 219x30
+ RenderTableRow (anonymous) at (0,0) size 219x30
+ RenderTableCell (anonymous) at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell (anonymous) at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 63x30
+ RenderText {#text} at (0,0) size 63x30
+ text run at (0,0) width 63: "Row "
+ RenderInline {span} at (0,0) size 79x30
+ RenderText {#text} at (62,0) size 79x30
+ text run at (62,0) width 79: "333, "
+ RenderInline {span} at (0,0) size 63x30
+ RenderText {#text} at (140,0) size 63x30
+ text run at (140,0) width 63: "Col "
+ RenderInline {span} at (0,0) size 17x30
+ RenderText {#text} at (202,0) size 17x30
+ text run at (202,0) width 17: "3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects092expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-092-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-092-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-092-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,110 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell (anonymous) at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 110x30
+ RenderText {#text} at (0,0) size 110x30
+ text run at (0,0) width 110: "Row 1, "
+ RenderInline {span} at (0,0) size 79x30
+ RenderText {#text} at (109,0) size 79x30
+ text run at (109,0) width 79: "Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell (anonymous) at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderTable {span} at (0,0) size 188x30
+ RenderTableSection (anonymous) at (0,0) size 188x30
+ RenderTableRow (anonymous) at (0,0) size 188x30
+ RenderTableCell (anonymous) at (0,0) size 188x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {span} at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell (anonymous) at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 63x30
+ RenderText {#text} at (0,0) size 63x30
+ text run at (0,0) width 63: "Row "
+ RenderInline {span} at (0,0) size 63x30
+ RenderText {#text} at (62,0) size 63x30
+ text run at (62,0) width 63: "22, "
+ RenderInline {span} at (0,0) size 64x30
+ RenderText {#text} at (124,0) size 64x30
+ text run at (124,0) width 64: "Col "
+ RenderInline {span} at (0,0) size 16x30
+ RenderText {#text} at (187,0) size 16x30
+ text run at (187,0) width 16: "2"
+ RenderTableCell {span} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,60) size 657x30
+ RenderTableCell (anonymous) at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderTable {span} at (0,0) size 219x30
+ RenderTableSection (anonymous) at (0,0) size 219x30
+ RenderTableRow (anonymous) at (0,0) size 219x30
+ RenderTableCell (anonymous) at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell (anonymous) at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 63x30
+ RenderText {#text} at (0,0) size 63x30
+ text run at (0,0) width 63: "Row "
+ RenderInline {span} at (0,0) size 79x30
+ RenderText {#text} at (62,0) size 79x30
+ text run at (62,0) width 79: "333, "
+ RenderInline {span} at (0,0) size 63x30
+ RenderText {#text} at (140,0) size 63x30
+ text run at (140,0) width 63: "Col "
+ RenderInline {span} at (0,0) size 17x30
+ RenderText {#text} at (202,0) size 17x30
+ text run at (202,0) width 17: "3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects099expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-099-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-099-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-099-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects100expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-100-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-100-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-100-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects105expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-105-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-105-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-105-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects106expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-106-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-106-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-106-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects107expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-107-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-107-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-107-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects108expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-108-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-108-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-108-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects109expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-109-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-109-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-109-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects110expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-110-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-110-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-110-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects111expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-111-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-111-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-111-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects112expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-112-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-112-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-112-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects113expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-113-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-113-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-113-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects114expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-114-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-114-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-114-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects115expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-115-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-115-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-115-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,24 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x97
+ RenderBlock {html} at (0,0) size 800x97
+ RenderBody {body} at (8,16) size 784x73
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) {div} at (0,34) size 784x39
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x39 [color=#FF0000]
+ RenderBlock {div} at (1,1) size 782x37
+ RenderInline {span} at (0,0) size 39x37
+ RenderText {#text} at (0,0) size 39x37
+ text run at (0,0) width 39: "a b"
+ RenderInline {span} at (0,0) size 39x37
+ RenderText {#text} at (38,0) size 39x37
+ text run at (38,0) width 39: "c d"
+ RenderText {#text} at (0,0) size 0x0
+layer at (8,50) size 78x39
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 79x39 [color=#008000]
+ RenderText zI: 2 {#text} at (1,1) size 77x37
+ text run at (1,1) width 77: "a bc d"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects116expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-116-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-116-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-116-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,24 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x97
+ RenderBlock {html} at (0,0) size 800x97
+ RenderBody {body} at (8,16) size 784x73
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) {div} at (0,34) size 784x39
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x39 [color=#FF0000]
+ RenderText zI: 1 {#text} at (1,1) size 77x37
+ text run at (1,1) width 77: "a bc d"
+layer at (8,50) size 78x39
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 79x39 [color=#008000]
+ RenderBlock {div} at (1,1) size 77x37
+ RenderInline {span} at (0,0) size 39x37
+ RenderText {#text} at (0,0) size 39x37
+ text run at (0,0) width 39: "a b"
+ RenderInline {span} at (0,0) size 39x37
+ RenderText {#text} at (38,0) size 39x37
+ text run at (38,0) width 39: "c d"
+ RenderText {#text} at (0,0) size 0x0
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects121expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-121-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-121-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-121-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,24 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x97
+ RenderBlock {html} at (0,0) size 800x97
+ RenderBody {body} at (8,16) size 784x73
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) {div} at (0,34) size 784x39
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x39 [color=#FF0000]
+ RenderBlock {div} at (1,1) size 782x37
+ RenderInline {span} at (0,0) size 39x37
+ RenderText {#text} at (0,0) size 39x37
+ text run at (0,0) width 39: "a b"
+ RenderInline {span} at (0,0) size 39x37
+ RenderText {#text} at (38,0) size 39x37
+ text run at (38,0) width 39: "c d"
+ RenderText {#text} at (0,0) size 0x0
+layer at (8,50) size 78x39
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 79x39 [color=#008000]
+ RenderText zI: 2 {#text} at (1,1) size 77x37
+ text run at (1,1) width 77: "a bc d"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects122expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-122-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-122-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-122-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,24 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x97
+ RenderBlock {html} at (0,0) size 800x97
+ RenderBody {body} at (8,16) size 784x73
+ RenderBlock {p} at (0,0) size 784x18
+ RenderText {#text} at (0,0) size 386x18
+ text run at (0,0) width 386: "There should be no red below, except for antialiasing issues."
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) {div} at (0,34) size 784x39
+layer at (8,50) size 784x39
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x39 [color=#FF0000]
+ RenderText zI: 1 {#text} at (1,1) size 77x37
+ text run at (1,1) width 77: "a bc d"
+layer at (8,50) size 78x39
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 79x39 [color=#008000]
+ RenderBlock {div} at (1,1) size 77x37
+ RenderInline {span} at (0,0) size 39x37
+ RenderText {#text} at (0,0) size 39x37
+ text run at (0,0) width 39: "a b"
+ RenderInline {span} at (0,0) size 39x37
+ RenderText {#text} at (38,0) size 39x37
+ text run at (38,0) width 39: "c d"
+ RenderText {#text} at (0,0) size 0x0
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects123expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-123-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-123-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-123-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects124expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-124-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-124-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-124-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableSection {span} at (0,60) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects139expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-139-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-139-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-139-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {span} at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x90
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {span} at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,60) size 657x30
+ RenderTableCell (anonymous) at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderBlock {span} at (0,0) size 219x30
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell (anonymous) at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderBlock {span} at (0,0) size 219x30
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects140expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-140-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-140-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-140-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,80 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {span} at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x90
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {span} at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,60) size 657x30
+ RenderTableCell (anonymous) at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderBlock {span} at (0,0) size 219x30
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell (anonymous) at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderBlock {span} at (0,0) size 219x30
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects149expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-149-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-149-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-149-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,81 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {span} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x30
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell (anonymous) at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 188x30
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell (anonymous) at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 188x30
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x60
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects150expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-150-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-150-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-150-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,81 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {span} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x30
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell (anonymous) at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 188x30
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell (anonymous) at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderInline {span} at (0,0) size 188x30
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableSection {span} at (0,30) size 657x60
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects155expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-155-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-155-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-155-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,77 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 564x30
+ RenderTableSection (anonymous) at (0,0) size 564x30
+ RenderTableRow (anonymous) at (0,0) size 564x30
+ RenderTableCell {span} at (0,0) size 188x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (188,0) size 188x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (376,0) size 188x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderBlock (anonymous) at (1,31) size 782x30
+ RenderText {#text} at (0,0) size 609x30
+ text run at (0,0) width 609: "Row 22, Col 1Row 22, Col 2Row 22, Col 3"
+ RenderTable at (1,61) size 657x30
+ RenderTableSection (anonymous) at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 564x30
+ RenderTableSection (anonymous) at (0,0) size 564x30
+ RenderTableRow {tr} at (0,0) size 564x30
+ RenderTableCell {td} at (0,0) size 188x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (188,0) size 188x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (376,0) size 188x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTable {table} at (1,31) size 609x30
+ RenderTableSection (anonymous) at (0,0) size 609x30
+ RenderTableRow {tr} at (0,0) size 609x30
+ RenderTableCell {td} at (0,0) size 203x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (203,0) size 203x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (406,0) size 203x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTable {table} at (1,61) size 657x30
+ RenderTableSection (anonymous) at (0,0) size 657x30
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects156expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-156-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-156-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-156-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,77 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 564x30
+ RenderTableSection (anonymous) at (0,0) size 564x30
+ RenderTableRow {tr} at (0,0) size 564x30
+ RenderTableCell {td} at (0,0) size 188x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (188,0) size 188x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (376,0) size 188x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTable {table} at (1,31) size 609x30
+ RenderTableSection (anonymous) at (0,0) size 609x30
+ RenderTableRow {tr} at (0,0) size 609x30
+ RenderTableCell {td} at (0,0) size 203x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (203,0) size 203x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (406,0) size 203x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTable {table} at (1,61) size 657x30
+ RenderTableSection (anonymous) at (0,0) size 657x30
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 564x30
+ RenderTableSection (anonymous) at (0,0) size 564x30
+ RenderTableRow (anonymous) at (0,0) size 564x30
+ RenderTableCell {span} at (0,0) size 188x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (188,0) size 188x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (376,0) size 188x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderBlock (anonymous) at (1,31) size 657x30
+ RenderText {#text} at (0,0) size 609x30
+ text run at (0,0) width 609: "Row 22, Col 1Row 22, Col 2Row 22, Col 3"
+ RenderTable at (1,61) size 657x30
+ RenderTableSection (anonymous) at (0,0) size 657x30
+ RenderTableRow (anonymous) at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects159expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-159-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-159-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-159-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,78 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x90
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {span} at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,60) size 657x30
+ RenderTableCell {span} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects160expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-160-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-160-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-160-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,78 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x90
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {span} at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {span} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,60) size 657x30
+ RenderTableCell {span} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects165expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-165-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-165-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-165-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,78 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x90
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow (anonymous) at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell (anonymous) at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,60) size 657x30
+ RenderTableCell {span} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformmaccss21tablestableanonymousobjects166expectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-166-expected.txt (0 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-166-expected.txt         (rev 0)
+++ trunk/LayoutTests/platform/mac/css2.1/tables/table-anonymous-objects-166-expected.txt        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -0,0 +1,78 @@
</span><ins>+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x141
+ RenderBlock {html} at (0,0) size 800x141
+ RenderBody {body} at (8,13) size 784x120
+ RenderBlock {p} at (0,0) size 784x15
+ RenderText {#text} at (0,0) size 476x15
+ text run at (0,0) width 476: "There should be no red below, except for antialiasing issues."
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) {div} at (0,28) size 784x92
+layer at (8,41) size 784x92
+ RenderBlock (relative positioned) zI: 1 {div} at (0,0) size 784x92 [color=#FF0000]
+ RenderTable {table} at (1,1) size 657x90
+ RenderTableSection (anonymous) at (0,0) size 657x90
+ RenderTableRow {tr} at (0,0) size 657x30
+ RenderTableCell {td} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {td} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {td} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow {tr} at (0,30) size 657x30
+ RenderTableCell {td} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {td} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell {td} at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {tr} at (0,60) size 657x30
+ RenderTableCell {td} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {td} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {td} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
+layer at (8,41) size 659x92
+ RenderBlock (positioned) zI: 2 {div} at (0,0) size 659x92 [color=#008000]
+ RenderTable at (1,1) size 657x90
+ RenderTableSection {span} at (0,0) size 657x90
+ RenderTableRow {span} at (0,0) size 657x30
+ RenderTableCell {span} at (0,0) size 219x30 [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 1"
+ RenderTableCell {span} at (219,0) size 219x30 [r=0 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 2"
+ RenderTableCell {span} at (438,0) size 219x30 [r=0 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 188x30
+ text run at (0,0) width 188: "Row 1, Col 3"
+ RenderTableRow (anonymous) at (0,30) size 657x30
+ RenderTableCell {span} at (0,30) size 219x30 [r=1 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 1"
+ RenderTableCell {span} at (219,30) size 219x30 [r=1 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 2"
+ RenderTableCell (anonymous) at (438,30) size 219x30 [r=1 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 203x30
+ text run at (0,0) width 203: "Row 22, Col 3"
+ RenderTableRow {span} at (0,60) size 657x30
+ RenderTableCell {span} at (0,60) size 219x30 [r=2 c=0 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 1"
+ RenderTableCell {span} at (219,60) size 219x30 [r=2 c=1 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 2"
+ RenderTableCell {span} at (438,60) size 219x30 [r=2 c=2 rs=1 cs=1]
+ RenderText {#text} at (0,0) size 219x30
+ text run at (0,0) width 219: "Row 333, Col 3"
</ins></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (190892 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2015-10-12 22:15:49 UTC (rev 190892)
+++ trunk/Source/WebCore/ChangeLog        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -1,3 +1,19 @@
</span><ins>+2015-10-12 Zalan Bujtas <zalan@apple.com>
+
+ display: table-cell; bug when resizing window
+ https://bugs.webkit.org/show_bug.cgi?id=138167
+
+ Reviewed by David Hyatt.
+
+ Clean up anonymous table wrappers all the way up to RenderTable.
+ This patch ensures that we don't keep the generated RenderTable/RenderSection/RenderCaption/RenderRow
+ objects around in the tree anymore when the last child is destroyed.
+
+ Import W3C CSS2.1 anonymous table tests.
+
+ * rendering/RenderObject.cpp:
+ (WebCore::RenderObject::destroyAndCleanupAnonymousWrappers):
+
</ins><span class="cx"> 2015-10-12 Myles C. Maxfield <mmaxfield@apple.com>
</span><span class="cx">
</span><span class="cx"> REGRESSION(r182192): Ligatures do not interact correctly with SHY in some fonts
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingRenderObjectcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/RenderObject.cpp (190892 => 190893)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/RenderObject.cpp        2015-10-12 22:15:49 UTC (rev 190892)
+++ trunk/Source/WebCore/rendering/RenderObject.cpp        2015-10-12 22:33:03 UTC (rev 190893)
</span><span class="lines">@@ -1625,17 +1625,18 @@
</span><span class="cx"> return;
</span><span class="cx"> }
</span><span class="cx">
</span><del>- RenderObject* destroyRoot = this;
- for (auto destroyRootParent = destroyRoot->parent(); destroyRootParent && destroyRootParent->isAnonymous(); destroyRoot = destroyRootParent, destroyRootParent = destroyRootParent->parent()) {
- // Currently we only remove anonymous cells' and table sections' wrappers but we should remove all unneeded
- // wrappers. See http://webkit.org/b/52123 as an example where this is needed.
- if (!destroyRootParent->isTableCell() && !destroyRootParent->isTableSection())
</del><ins>+ auto* destroyRoot = this;
+ auto* destroyRootParent = destroyRoot->parent();
+ while (destroyRootParent && destroyRootParent->isAnonymous()) {
+ if (!destroyRootParent->isTableCell() && !destroyRootParent->isTableRow()
+ && !destroyRootParent->isTableCaption() && !destroyRootParent->isTableSection() && !destroyRootParent->isTable())
</ins><span class="cx"> break;
</span><del>-
- if (destroyRootParent->firstChild() != this || destroyRootParent->lastChild() != this)
</del><ins>+ // single child?
+ if (!(destroyRootParent->firstChild() == destroyRoot && destroyRootParent->lastChild() == destroyRoot))
</ins><span class="cx"> break;
</span><ins>+ destroyRoot = destroyRootParent;
+ destroyRootParent = destroyRootParent->parent();
</ins><span class="cx"> }
</span><del>-
</del><span class="cx"> destroyRoot->destroy();
</span><span class="cx">
</span><span class="cx"> // WARNING: |this| is deleted here.
</span></span></pre>
</div>
</div>
</body>
</html>