2016-10-23 10:27:32 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
// @Generated by gentest/gentest.rb from gentest/fixtures/CSSLayoutAbsolutePositionTest.html
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
package com.facebook.csslayout;
|
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
|
|
|
|
public class CSSLayoutAbsolutePositionTest {
|
|
|
|
@Test
|
|
|
|
public void test_absolute_layout_width_height_start_top() {
|
|
|
|
final CSSNode root = new CSSNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
final CSSNode root_child0 = new CSSNode();
|
|
|
|
root_child0.setPositionType(CSSPositionType.ABSOLUTE);
|
2016-11-29 12:23:02 -08:00
|
|
|
root_child0.setPosition(CSSEdge.START, 10f);
|
|
|
|
root_child0.setPosition(CSSEdge.TOP, 10f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root_child0.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
root.setDirection(CSSDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
root.setDirection(CSSDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(80f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_absolute_layout_width_height_end_bottom() {
|
|
|
|
final CSSNode root = new CSSNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
final CSSNode root_child0 = new CSSNode();
|
|
|
|
root_child0.setPositionType(CSSPositionType.ABSOLUTE);
|
2016-11-29 12:23:02 -08:00
|
|
|
root_child0.setPosition(CSSEdge.END, 10f);
|
|
|
|
root_child0.setPosition(CSSEdge.BOTTOM, 10f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root_child0.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
root.setDirection(CSSDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(80f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
root.setDirection(CSSDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_absolute_layout_start_top_end_bottom() {
|
|
|
|
final CSSNode root = new CSSNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
final CSSNode root_child0 = new CSSNode();
|
|
|
|
root_child0.setPositionType(CSSPositionType.ABSOLUTE);
|
2016-11-29 12:23:02 -08:00
|
|
|
root_child0.setPosition(CSSEdge.START, 10f);
|
|
|
|
root_child0.setPosition(CSSEdge.TOP, 10f);
|
|
|
|
root_child0.setPosition(CSSEdge.END, 10f);
|
|
|
|
root_child0.setPosition(CSSEdge.BOTTOM, 10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
root.setDirection(CSSDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
root.setDirection(CSSDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_absolute_layout_width_height_start_top_end_bottom() {
|
|
|
|
final CSSNode root = new CSSNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
final CSSNode root_child0 = new CSSNode();
|
|
|
|
root_child0.setPositionType(CSSPositionType.ABSOLUTE);
|
2016-11-29 12:23:02 -08:00
|
|
|
root_child0.setPosition(CSSEdge.START, 10f);
|
|
|
|
root_child0.setPosition(CSSEdge.TOP, 10f);
|
|
|
|
root_child0.setPosition(CSSEdge.END, 10f);
|
|
|
|
root_child0.setPosition(CSSEdge.BOTTOM, 10f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root_child0.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
root.setDirection(CSSDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
root.setDirection(CSSDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(80f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent() {
|
|
|
|
final CSSNode root = new CSSNode();
|
|
|
|
root.setFlexDirection(CSSFlexDirection.ROW);
|
|
|
|
root.setOverflow(CSSOverflow.HIDDEN);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(50f);
|
|
|
|
root.setHeight(50f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
final CSSNode root_child0 = new CSSNode();
|
|
|
|
root_child0.setPositionType(CSSPositionType.ABSOLUTE);
|
2016-11-29 12:23:02 -08:00
|
|
|
root_child0.setPosition(CSSEdge.START, 0f);
|
|
|
|
root_child0.setPosition(CSSEdge.TOP, 0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final CSSNode root_child0_child0 = new CSSNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0_child0.setWidth(100f);
|
|
|
|
root_child0_child0.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
root.setDirection(CSSDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
root.setDirection(CSSDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(-50f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
2016-11-09 11:45:18 -08:00
|
|
|
@Test
|
|
|
|
public void test_absolute_layout_within_border() {
|
|
|
|
final CSSNode root = new CSSNode();
|
2016-11-29 12:23:02 -08:00
|
|
|
root.setMargin(CSSEdge.LEFT, 10f);
|
|
|
|
root.setMargin(CSSEdge.TOP, 10f);
|
|
|
|
root.setMargin(CSSEdge.RIGHT, 10f);
|
|
|
|
root.setMargin(CSSEdge.BOTTOM, 10f);
|
|
|
|
root.setPadding(CSSEdge.LEFT, 10);
|
|
|
|
root.setPadding(CSSEdge.TOP, 10);
|
|
|
|
root.setPadding(CSSEdge.RIGHT, 10);
|
|
|
|
root.setPadding(CSSEdge.BOTTOM, 10);
|
|
|
|
root.setBorder(CSSEdge.LEFT, 10f);
|
|
|
|
root.setBorder(CSSEdge.TOP, 10f);
|
|
|
|
root.setBorder(CSSEdge.RIGHT, 10f);
|
|
|
|
root.setBorder(CSSEdge.BOTTOM, 10f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-11-09 11:45:18 -08:00
|
|
|
|
|
|
|
final CSSNode root_child0 = new CSSNode();
|
|
|
|
root_child0.setPositionType(CSSPositionType.ABSOLUTE);
|
2016-11-29 12:23:02 -08:00
|
|
|
root_child0.setPosition(CSSEdge.LEFT, 0f);
|
|
|
|
root_child0.setPosition(CSSEdge.TOP, 0f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(50f);
|
|
|
|
root_child0.setHeight(50f);
|
2016-11-09 11:45:18 -08:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final CSSNode root_child1 = new CSSNode();
|
|
|
|
root_child1.setPositionType(CSSPositionType.ABSOLUTE);
|
2016-11-29 12:23:02 -08:00
|
|
|
root_child1.setPosition(CSSEdge.RIGHT, 0f);
|
|
|
|
root_child1.setPosition(CSSEdge.BOTTOM, 0f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child1.setWidth(50f);
|
|
|
|
root_child1.setHeight(50f);
|
2016-11-09 11:45:18 -08:00
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
root.setDirection(CSSDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-11-09 11:45:18 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-11-09 11:45:18 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
2016-11-09 11:45:18 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(40f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
2016-11-09 11:45:18 -08:00
|
|
|
|
|
|
|
root.setDirection(CSSDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-11-09 11:45:18 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-11-09 11:45:18 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
2016-11-09 11:45:18 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(40f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
2016-11-09 11:45:18 -08:00
|
|
|
}
|
|
|
|
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|