Browse Source

web page -> main frame

(cherry picked from commit 0bb54f8b11)
Jamie Birch 4 years ago
parent
commit
05ac6cd4a2
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      example/examples/Injection.tsx

+ 1
- 1
example/examples/Injection.tsx View File

@@ -56,7 +56,7 @@ export default class Injection extends Component<Props, State> {
56 56
           </View>
57 57
         </View>
58 58
         <Text>This test presents three iframes: iframe_0 (yellow); iframe_1 (pink); and iframe_2 (transparent, because its 'X-Frame-Options' is set to 'SAMEORIGIN').</Text>
59
-        <Text>Before injection, the webpage's background is the browser's default value (transparent or white) and each frame has its natural colour.</Text>
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 62
         <Text>✅ If all frames become orange, then multi-frame injection is supported and both injection times are supported.</Text>