Import some Blink layout tests.
https://bugs.webkit.org/show_bug.cgi?id=149768

These are a subset of tests that don't time out and whose expected
results in Blink match the results in WebKit when run under DRT and
WKTR.

Reviewed by Andy Estes.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@190629 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/imported/blink/fast/css/transformed-overflow-hidden-clips-fixed.html b/LayoutTests/imported/blink/fast/css/transformed-overflow-hidden-clips-fixed.html
new file mode 100644
index 0000000..bc821b6
--- /dev/null
+++ b/LayoutTests/imported/blink/fast/css/transformed-overflow-hidden-clips-fixed.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<style>
+#transformed {
+    overflow: hidden;
+    transform: translateZ(0);
+    height: 100px;
+    width: 100px;
+    background-color: salmon;
+}
+#fixed {
+    position: fixed;
+    background-color: chartreuse;
+    width: 100px;
+    height: 100px;
+    top: -50px;
+}
+</style>
+<div id="transformed">
+  <div id="fixed"></div>
+</div>
\ No newline at end of file