shape ops work in progress

git-svn-id: http://skia.googlecode.com/svn/trunk@4610 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/SimplifyNew_Test.cpp b/experimental/Intersection/SimplifyNew_Test.cpp
index 06b0167..a7c5c31 100644
--- a/experimental/Intersection/SimplifyNew_Test.cpp
+++ b/experimental/Intersection/SimplifyNew_Test.cpp
@@ -396,6 +396,14 @@
     testSimplifyx(path);
 }
 
+static void testLine36() {
+    SkPath path, simple;
+    path.addRect(0, 10, 20, 20, (SkPath::Direction) 0);
+    path.addRect(6, 12, 18, 18, (SkPath::Direction) 0);
+    path.addRect(4, 16, 13, 13, (SkPath::Direction) 0);
+    testSimplifyx(path);
+}
+
 #define TEST(name) { name, #name }
 
 static struct {
@@ -441,6 +449,7 @@
     TEST(testLine33),
     TEST(testLine34),
     TEST(testLine35),
+    TEST(testLine36),
 };
 
 static const size_t testCount = sizeof(tests) / sizeof(tests[0]);