ソースを参照

Clarify wording of test pass

(cherry picked from commit 7ead5bf8b5)
Jamie Birch 4 年 前
コミット
a6fdfcc5f3
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      example/examples/Injection.tsx

+ 1
- 1
example/examples/Injection.tsx ファイルの表示

@@ -59,7 +59,7 @@ export default class Injection extends Component<Props, State> {
59 59
         <Text>Before injection, the main frame's background is the browser's default value (transparent or white) and each frame has its natural colour.</Text>
60 60
         <Text>1) At injection time "beforeContentLoaded", a variable will be set in each frame to set 'orange' as the "colour to be used".</Text>
61 61
         <Text>2) At injection time "afterContentLoaded", that variable will be read, and thus the colour orange will be injected into all frames.</Text>
62
-        <Text>✅ If all frames become orange, then multi-frame injection is supported and both injection times are supported.</Text>
62
+        <Text>✅ If the main frame, iframe_0, and iframe_1 all become orange, then multi-frame injection is supported and both injection times are supported.</Text>
63 63
         <Text>❌ If no frames become orange, then only one (or neither) of the injection times are supported, or even injection into the main frame is failing.</Text>
64 64
         <Text>❌ If only the main frame becomes orange, then multi-frame injection is not supported.</Text>
65 65
       </ScrollView>