change to an xit

This commit is contained in:
Jared Forsyth
2015-08-06 12:35:12 -07:00
parent 3e9ac12d22
commit f7bab441e0
4 changed files with 44 additions and 46 deletions

View File

@@ -4192,7 +4192,7 @@ int main()
node_0->layout.position[CSS_TOP] = 0;
node_0->layout.position[CSS_LEFT] = 0;
node_0->layout.dimensions[CSS_WIDTH] = 130;
node_0->layout.dimensions[CSS_HEIGHT] = 37;
node_0->layout.dimensions[CSS_HEIGHT] = 36;
init_css_node_children(node_0, 1);
{
css_node_t *node_1;
@@ -4200,7 +4200,7 @@ int main()
node_1->layout.position[CSS_TOP] = 0;
node_1->layout.position[CSS_LEFT] = 0;
node_1->layout.dimensions[CSS_WIDTH] = 130;
node_1->layout.dimensions[CSS_HEIGHT] = 37;
node_1->layout.dimensions[CSS_HEIGHT] = 36;
init_css_node_children(node_1, 1);
{
css_node_t *node_2;
@@ -4208,7 +4208,7 @@ int main()
node_2->layout.position[CSS_TOP] = 0;
node_2->layout.position[CSS_LEFT] = 0;
node_2->layout.dimensions[CSS_WIDTH] = 130;
node_2->layout.dimensions[CSS_HEIGHT] = 37;
node_2->layout.dimensions[CSS_HEIGHT] = 36;
}
}
}
@@ -4244,7 +4244,7 @@ int main()
node_0->layout.position[CSS_TOP] = 0;
node_0->layout.position[CSS_LEFT] = 0;
node_0->layout.dimensions[CSS_WIDTH] = 200;
node_0->layout.dimensions[CSS_HEIGHT] = 37;
node_0->layout.dimensions[CSS_HEIGHT] = 36;
init_css_node_children(node_0, 1);
{
css_node_t *node_1;
@@ -4252,7 +4252,7 @@ int main()
node_1->layout.position[CSS_TOP] = 0;
node_1->layout.position[CSS_LEFT] = 0;
node_1->layout.dimensions[CSS_WIDTH] = 200;
node_1->layout.dimensions[CSS_HEIGHT] = 37;
node_1->layout.dimensions[CSS_HEIGHT] = 36;
init_css_node_children(node_1, 1);
{
css_node_t *node_2;
@@ -4260,7 +4260,7 @@ int main()
node_2->layout.position[CSS_TOP] = 0;
node_2->layout.position[CSS_LEFT] = 0;
node_2->layout.dimensions[CSS_WIDTH] = 130;
node_2->layout.dimensions[CSS_HEIGHT] = 37;
node_2->layout.dimensions[CSS_HEIGHT] = 36;
}
}
}
@@ -4290,7 +4290,7 @@ int main()
node_0->layout.position[CSS_TOP] = 0;
node_0->layout.position[CSS_LEFT] = 0;
node_0->layout.dimensions[CSS_WIDTH] = 100;
node_0->layout.dimensions[CSS_HEIGHT] = 37;
node_0->layout.dimensions[CSS_HEIGHT] = 36;
init_css_node_children(node_0, 1);
{
css_node_t *node_1;
@@ -4298,7 +4298,7 @@ int main()
node_1->layout.position[CSS_TOP] = 0;
node_1->layout.position[CSS_LEFT] = 0;
node_1->layout.dimensions[CSS_WIDTH] = 100;
node_1->layout.dimensions[CSS_HEIGHT] = 37;
node_1->layout.dimensions[CSS_HEIGHT] = 36;
}
}
@@ -4344,7 +4344,7 @@ int main()
node_0->layout.position[CSS_TOP] = 0;
node_0->layout.position[CSS_LEFT] = 0;
node_0->layout.dimensions[CSS_WIDTH] = 100;
node_0->layout.dimensions[CSS_HEIGHT] = 77;
node_0->layout.dimensions[CSS_HEIGHT] = 76;
init_css_node_children(node_0, 1);
{
css_node_t *node_1;
@@ -4352,7 +4352,7 @@ int main()
node_1->layout.position[CSS_TOP] = 20;
node_1->layout.position[CSS_LEFT] = 20;
node_1->layout.dimensions[CSS_WIDTH] = 100;
node_1->layout.dimensions[CSS_HEIGHT] = 37;
node_1->layout.dimensions[CSS_HEIGHT] = 36;
init_css_node_children(node_1, 1);
{
css_node_t *node_2;
@@ -4360,7 +4360,7 @@ int main()
node_2->layout.position[CSS_TOP] = 0;
node_2->layout.position[CSS_LEFT] = 0;
node_2->layout.dimensions[CSS_WIDTH] = 100;
node_2->layout.dimensions[CSS_HEIGHT] = 37;
node_2->layout.dimensions[CSS_HEIGHT] = 36;
}
}
}
@@ -4668,7 +4668,7 @@ int main()
node_0->layout.position[CSS_TOP] = 0;
node_0->layout.position[CSS_LEFT] = 0;
node_0->layout.dimensions[CSS_WIDTH] = 200;
node_0->layout.dimensions[CSS_HEIGHT] = 77;
node_0->layout.dimensions[CSS_HEIGHT] = 76;
init_css_node_children(node_0, 1);
{
css_node_t *node_1;
@@ -4676,7 +4676,7 @@ int main()
node_1->layout.position[CSS_TOP] = 0;
node_1->layout.position[CSS_LEFT] = 0;
node_1->layout.dimensions[CSS_WIDTH] = 200;
node_1->layout.dimensions[CSS_HEIGHT] = 77;
node_1->layout.dimensions[CSS_HEIGHT] = 76;
init_css_node_children(node_1, 1);
{
css_node_t *node_2;
@@ -4684,7 +4684,7 @@ int main()
node_2->layout.position[CSS_TOP] = 20;
node_2->layout.position[CSS_LEFT] = 20;
node_2->layout.dimensions[CSS_WIDTH] = 160;
node_2->layout.dimensions[CSS_HEIGHT] = 37;
node_2->layout.dimensions[CSS_HEIGHT] = 36;
}
}
}

View File

@@ -2307,6 +2307,21 @@ describe('Layout', function() {
]}
);
});
xit('should stretch a nested child', function() {
testLayout(
{children: [
{children: [{}]},
{style: {width: 40}}
]},
{width: 40, height: 0, top: 0, left: 0, children: [
{width: 40, height: 0, top: 0, left: 0, children: [
{width: 40, height: 0, top: 0, left: 0}
]},
{width: 40, height: 0, top: 0, left: 0}
]}
);
});
});
describe('Layout alignContent', function() {
@@ -2397,20 +2412,3 @@ describe('Layout alignContent', function() {
testAlignContent('flex-end', 'flex-end');
testAlignContent('flex-end', 'stretch');
});
describe('nested flex', function() {
it('should stretch a nested child', function() {
testLayout(
{children: [
{children: [{}]},
{style: {width: 40}}
]},
{width: 40, height: 0, top: 0, left: 0, children: [
{width: 40, height: 0, top: 0, left: 0, children: [
{width: 40, height: 0, top: 0, left: 0}
]},
{width: 40, height: 0, top: 0, left: 0}
]}
);
});
});

View File

@@ -4469,7 +4469,7 @@ public class LayoutEngineTest {
node_0.layout.top = 0;
node_0.layout.left = 0;
node_0.layout.width = 130;
node_0.layout.height = 37;
node_0.layout.height = 36;
addChildren(node_0, 1);
{
TestCSSNode node_1;
@@ -4477,7 +4477,7 @@ public class LayoutEngineTest {
node_1.layout.top = 0;
node_1.layout.left = 0;
node_1.layout.width = 130;
node_1.layout.height = 37;
node_1.layout.height = 36;
addChildren(node_1, 1);
{
TestCSSNode node_2;
@@ -4485,7 +4485,7 @@ public class LayoutEngineTest {
node_2.layout.top = 0;
node_2.layout.left = 0;
node_2.layout.width = 130;
node_2.layout.height = 37;
node_2.layout.height = 36;
}
}
}
@@ -4523,7 +4523,7 @@ public class LayoutEngineTest {
node_0.layout.top = 0;
node_0.layout.left = 0;
node_0.layout.width = 200;
node_0.layout.height = 37;
node_0.layout.height = 36;
addChildren(node_0, 1);
{
TestCSSNode node_1;
@@ -4531,7 +4531,7 @@ public class LayoutEngineTest {
node_1.layout.top = 0;
node_1.layout.left = 0;
node_1.layout.width = 200;
node_1.layout.height = 37;
node_1.layout.height = 36;
addChildren(node_1, 1);
{
TestCSSNode node_2;
@@ -4539,7 +4539,7 @@ public class LayoutEngineTest {
node_2.layout.top = 0;
node_2.layout.left = 0;
node_2.layout.width = 130;
node_2.layout.height = 37;
node_2.layout.height = 36;
}
}
}
@@ -4571,7 +4571,7 @@ public class LayoutEngineTest {
node_0.layout.top = 0;
node_0.layout.left = 0;
node_0.layout.width = 100;
node_0.layout.height = 37;
node_0.layout.height = 36;
addChildren(node_0, 1);
{
TestCSSNode node_1;
@@ -4579,7 +4579,7 @@ public class LayoutEngineTest {
node_1.layout.top = 0;
node_1.layout.left = 0;
node_1.layout.width = 100;
node_1.layout.height = 37;
node_1.layout.height = 36;
}
}
@@ -4627,7 +4627,7 @@ public class LayoutEngineTest {
node_0.layout.top = 0;
node_0.layout.left = 0;
node_0.layout.width = 100;
node_0.layout.height = 77;
node_0.layout.height = 76;
addChildren(node_0, 1);
{
TestCSSNode node_1;
@@ -4635,7 +4635,7 @@ public class LayoutEngineTest {
node_1.layout.top = 20;
node_1.layout.left = 20;
node_1.layout.width = 100;
node_1.layout.height = 37;
node_1.layout.height = 36;
addChildren(node_1, 1);
{
TestCSSNode node_2;
@@ -4643,7 +4643,7 @@ public class LayoutEngineTest {
node_2.layout.top = 0;
node_2.layout.left = 0;
node_2.layout.width = 100;
node_2.layout.height = 37;
node_2.layout.height = 36;
}
}
}
@@ -4965,7 +4965,7 @@ public class LayoutEngineTest {
node_0.layout.top = 0;
node_0.layout.left = 0;
node_0.layout.width = 200;
node_0.layout.height = 77;
node_0.layout.height = 76;
addChildren(node_0, 1);
{
TestCSSNode node_1;
@@ -4973,7 +4973,7 @@ public class LayoutEngineTest {
node_1.layout.top = 0;
node_1.layout.left = 0;
node_1.layout.width = 200;
node_1.layout.height = 77;
node_1.layout.height = 76;
addChildren(node_1, 1);
{
TestCSSNode node_2;
@@ -4981,7 +4981,7 @@ public class LayoutEngineTest {
node_2.layout.top = 20;
node_2.layout.left = 20;
node_2.layout.width = 160;
node_2.layout.height = 37;
node_2.layout.height = 36;
}
}
}

View File

@@ -17,7 +17,7 @@ public class TestConstants {
public static final float SMALL_WIDTH = 35f;
public static final float SMALL_HEIGHT = 18f;
public static final float BIG_WIDTH = 172f;
public static final float BIG_HEIGHT = 37f;
public static final float BIG_HEIGHT = 36f;
public static final float BIG_MIN_WIDTH = 100f;
public static final String SMALL_TEXT = "small";
public static final String LONG_TEXT = "loooooooooong with space";