| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/fonts/ScriptRunIterator.h" | 5 #include "platform/fonts/ScriptRunIterator.h" |
| 6 | 6 |
| 7 #include "platform/Logging.h" | |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 9 #include "wtf/Assertions.h" | 8 #include "wtf/Assertions.h" |
| 10 #include "wtf/Threading.h" | 9 #include "wtf/Threading.h" |
| 11 #include "wtf/text/WTFString.h" | 10 #include "wtf/text/WTFString.h" |
| 12 #include <string> | 11 #include <string> |
| 13 | 12 |
| 14 namespace blink { | 13 namespace blink { |
| 15 | 14 |
| 16 struct TestRun { | 15 struct TestRun { |
| 17 std::string text; | 16 std::string text; |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 } | 739 } |
| 741 } | 740 } |
| 742 } | 741 } |
| 743 | 742 |
| 744 // ZWJ is \u200D Cf (Format, other) and its script is inherited. I'm going to | 743 // ZWJ is \u200D Cf (Format, other) and its script is inherited. I'm going to |
| 745 // ignore this for now, as I think it shouldn't matter which run it ends up | 744 // ignore this for now, as I think it shouldn't matter which run it ends up |
| 746 // in. HarfBuzz needs to be able to use it as context and shape each | 745 // in. HarfBuzz needs to be able to use it as context and shape each |
| 747 // neighboring character appropriately no matter what run it got assigned to. | 746 // neighboring character appropriately no matter what run it got assigned to. |
| 748 | 747 |
| 749 } // namespace blink | 748 } // namespace blink |
| OLD | NEW |